I want to be master in Pl/sql

Hi..
I have good knowledge in plsql theoretically but not practically... i working on plsql from 6 months but still some times i am facing problems in logical thinking..
So can anybody tell me to improve..

Want to add a few pence to what Blue said...
A "master programming" is good in any language. You can know the ins and outs of a language to the finest degree - amaze your peers with being able not only recall every single command in the language, but also quote all its parameters, including optional ones.
And you can still be a poor programmer.
It is not about knowing the language, It is about knowing programming. Programming logic. Programming design. Modularisation.
It is about knowing what a control break is. It is about knowing not only what the statement you've coded does, but knowing WHY it is sitting there in that line of the code. Why that command? Why there in the code and not somewhere else?
And the only way you get good at this is to write code.. and write code.. and write code. Year after year after year...

Similar Messages

  • I want to use the SQL Toolkit of NI and SQL Server as my databasis on a server. Do I need to install a client in each computer I want to handle the data into SQL tables or I need only a ODBC driver?

    I want to use the SQL Toolkit of NI and SQL Server as my databasis on a server. Do I need to install a client in each computer I want to handle the data into SQL tables or I need only a ODBC driver?

    You only need the ODBC driver on each computer. If you are distributing the SQL Toolkit app as an executable and do not install the whole toolkit on each computer, you'll need the SQL Toolkit support files. This is about a dozen files. You can get the list at http://digital.ni.com/public.nsf/websearch/b814be005f9da9258625658700550c75?OpenDocument.

  • I want to allocate balance qty in sql.....

    Please help me…
    I want to allocate balance qty in sql.....
    I have data like below table and expected answer in column EDIT_UP_TO_EXEPECTED_ANS.
    I want to edit data with validation of next process executed qty.
    for example in row 3rd and 4th PROCESS_EXECUTE_QTY is ORDER_VRNO wise is 100 i.e.
    100+0=100 and i want to allocated this qty in 1st and 2nd row i.e. 75,25 i.e. 75+25=100
    because first process CUTTING of jobcard_no J113Y-1004 is 75 and next process done is 100 order_vrno wise
    so i want to allocated 100 in 75,100 i.e. 75,25 total should be next process execute qty i.e. 100
    SLNO
    JOBCARD_NO
    ORDER_VRNO
    PROCESS_CODE
    PROCESS_EXECUTE_QTY
    EDIT_UP_TO_EXPECTED_ANS
    1
    J113Y-1004
    P113Y-56
    CUTTING
    75
    75
    2
    J113Y-1005
    P113Y-56
    CUTTING
    100
    25
    1
    J113Y-1004
    P113Y-56
    DRILLING
    100
    85
    2
    J113Y-1005
    P113Y-56
    DRILLING
    0
    0
    1
    J113Y-1004
    P113Y-56
    PUNCHING
    15
    15
    2
    J113Y-1005
    P113Y-56
    PUNCHING
    0
    0
    1
    J113Y-1004
    P113Y-56
    FORMING
    0
    0
    2
    J113Y-1005
    P113Y-56
    FORMING
    0
    0
    Table script ....
    with t as
    (select 1 SLNO,'J113Y-1004' jobcard_no,'P113Y-56' ORDER_VRNO,'CUTTING' PROCESS_CODE,75 PROCESS_EXECUTE_QTY, 75 EDIT_UP_TO_EXEPECTED_ANS FROM DUAL
    UNION ALL
    select 2 SLNO,'J113Y-1005' jobcard_no,'P113Y-56' ORDER_VRNO,'CUTTING' PROCESS_CODE,100 PROCESS_EXECUTE_QTY, 25 EDIT_UP_TO_EXEPECTED_ANS FROM DUAL
    UNION ALL
    select 1 SLNO,'J113Y-1004' jobcard_no,'P113Y-56' ORDER_VRNO,'DRILLING' PROCESS_CODE,100 PROCESS_EXECUTE_QTY,85 EDIT_UP_TO_EXEPECTED_ANS FROM DUAL
    UNION ALL
      select 2 SLNO,'J113Y-1005' jobcard_no,'P113Y-56' ORDER_VRNO,'DRILLING' PROCESS_CODE,0 PROCESS_EXECUTE_QTY,0  EDIT_UP_TO_EXEPECTED_ANS FROM DUAL
      UNION ALL
      select 1 SLNO,'J113Y-1004' jobcard_no,'P113Y-56' ORDER_VRNO,'PUNCHING' PROCESS_CODE,15 PROCESS_EXECUTE_QTY, 15 EDIT_UP_TO_EXEPECTED_ANS FROM DUAL
      UNION ALL
      select 2 SLNO,'J113Y-1005' jobcard_no,'P113Y-56' ORDER_VRNO,'PUNCHING' PROCESS_CODE,0 PROCESS_EXECUTE_QTY, 0 EDIT_UP_TO_EXEPECTED_ANS FROM DUAL
        UNION ALL
      select 1 SLNO,'J113Y-1004' jobcard_no,'P113Y-56' ORDER_VRNO,'FORMING' PROCESS_CODE,0 PROCESS_EXECUTE_QTY, 0 EDIT_UP_TO_EXEPECTED_ANS FROM DUAL
      UNION ALL
      select 2 SLNO,'J113Y-1005' jobcard_no,'P113Y-56' ORDER_VRNO,'FORMING' PROCESS_CODE,0 PROCESS_EXECUTE_QTY, 0 EDIT_UP_TO_EXEPECTED_ANS FROM DUAL)
    SELECT SLNO,JOBCARD_NO,ORDER_VRNO,PROCESS_CODE,PROCESS_EXECUTE_QTY,EDIT_UP_TO_EXEPECTED_ANS FROM T
    i am using
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    version.
    thanks.

    Just a guess  ( with some data changed and an order column added)
    with t as
    (select 1 SLNO,'J113Y-1004' jobcard_no,'P113Y-56' ORDER_VRNO,'CUTTING' PROCESS_CODE,1 ord,75 PROCESS_EXECUTE_QTY,0 EDIT_UP_TO_EXEPECTED_ANS      FROM DUAL UNION ALL
    select 2,'J113Y-1005','P113Y-56','CUTTING',1,100,0 FROM DUAL UNION ALL
    select 1,'J113Y-1004','P113Y-56','DRILLING',2,85,0 FROM DUAL UNION ALL
    select 2,'J113Y-1005','P113Y-56','DRILLING',2,0,0 FROM DUAL UNION ALL
    select 1,'J113Y-1004','P113Y-56','PUNCHING',3,15,0 FROM DUAL UNION ALL
    select 2,'J113Y-1005','P113Y-56','PUNCHING',3,0,0 FROM DUAL UNION ALL
    select 1,'J113Y-1004','P113Y-56','FORMING',4,0,0 FROM DUAL UNION ALL
    select 2,'J113Y-1005','P113Y-56','FORMING',4,0,0 FROM DUAL
    SLNO
    JOBCARD_NO
    ORDER_VRNO
    PROCESS_CODE
    ORD
    PROCESS_EXECUTE_QTY
    EDIT_UP_TO_EXEPECTED_ANS
    1
    J113Y-1004
    P113Y-56
    CUTTING
    1
    75
    0
    2
    J113Y-1005
    P113Y-56
    CUTTING
    1
    100
    0
    1
    J113Y-1004
    P113Y-56
    DRILLING
    2
    85
    0
    2
    J113Y-1005
    P113Y-56
    DRILLING
    2
    0
    0
    1
    J113Y-1004
    P113Y-56
    PUNCHING
    3
    15
    0
    2
    J113Y-1005
    P113Y-56
    PUNCHING
    3
    0
    0
    1
    J113Y-1004
    P113Y-56
    FORMING
    4
    0
    0
    2
    J113Y-1005
    P113Y-56
    FORMING
    4
    0
    0
    SELECT SLNO,JOBCARD_NO,ORDER_VRNO,PROCESS_CODE,ord,PROCESS_EXECUTE_QTY,
           case when slno = 2
                then PROCESS_EXECUTE_QTY - lag(PROCESS_EXECUTE_QTY ) over (order by ord,slno)
                else PROCESS_EXECUTE_QTY
           end EDIT_UP_TO_EXEPECTED_ANS
      from (SELECT SLNO,JOBCARD_NO,ORDER_VRNO,PROCESS_CODE,ord,
                   case when slno = 2
                        then first_value(process_execute_qty) over (order by ord,slno desc)
                        else PROCESS_EXECUTE_QTY
                   end PROCESS_EXECUTE_QTY,
                   EDIT_UP_TO_EXEPECTED_ANS
              FROM T
    order by ord,slno
    SLNO
    JOBCARD_NO
    ORDER_VRNO
    PROCESS_CODE
    ORD
    PROCESS_EXECUTE_QTY
    EDIT_UP_TO_EXEPECTED_ANS
    1
    J113Y-1004
    P113Y-56
    CUTTING
    1
    75
    75
    2
    J113Y-1005
    P113Y-56
    CUTTING
    1
    100
    25
    1
    J113Y-1004
    P113Y-56
    DRILLING
    2
    85
    85
    2
    J113Y-1005
    P113Y-56
    DRILLING
    2
    100
    15
    1
    J113Y-1004
    P113Y-56
    PUNCHING
    3
    15
    15
    2
    J113Y-1005
    P113Y-56
    PUNCHING
    3
    100
    85
    1
    J113Y-1004
    P113Y-56
    FORMING
    4
    0
    0
    2
    J113Y-1005
    P113Y-56
    FORMING
    4
    100
    100
    Regards
    Etbin

  • I want to query oracle database from sql server can anyone tell steps 2 fo

    i want to query oracle database from sql server can anyone tell steps 2 followed
    i tried with linked servers but it is throwing errors can anyone hepl in this regard
    The operation could not be performed because the OLE DB provider 'MSDAORA' was unable to begin a distributed transaction.
    OLE DB error trace [OLE/DB Provider 'MSDAORA' ITransactionJoin::JoinTransaction returned 0x8004d01b].

    First of all - you are in the wrong forum.
    Look either for the Database general or search for Transparant / Heterogenous Gateways.
    cu
    Andreas

  • I want to query oracle database from sql server can anyone tell steps 2 fol

    i want to query oracle database from sql server can anyone tell steps 2 followed
    i tried with linked servers but it is throwing errors can anyone hepl in this regard
    The operation could not be performed because the OLE DB provider 'MSDAORA' was unable to begin a distributed transaction.
    OLE DB error trace [OLE/DB Provider 'MSDAORA' ITransactionJoin::JoinTransaction returned 0x8004d01b].

    First of all - you are in the wrong forum.
    Look either for the Database general or search for Transparant / Heterogenous Gateways.
    cu
    Andreas

  • Want to connect as sysdba in sql*plus

    Hi everybody,
    Greetings...
    I want to connect as sysdba in sql*plus, because i'm trying to install oracle Apex in my system.
    Could you please anybody.

    sqlplus sys/password as sysdbaor
    sqlplus / as sysdbawith OS authentication enabled

  • Error openin configuration of Master Data Serice SQL 2012

    Hi,
    after installation of Master Data Services (SQL 2012 EE) I can't open Configuration Manager because of error:
    "An unexpected error occured: Could not find file 'C:\Windows\assembly\GAC_MSIL\Microsoft.MasterDataServices.Configuration\11.0.0.0__89845dcd8080cc91\Microsoft.MasterDataServices.Configuration.InstallState'.."
    already tried to run repair but no sucess
    how repair that ?

    Hi MariuszBu,
    Have you got any error/warning information during install Master Data Services in your environment. Based on the error message, it seems that the Master Data Services didn't install successfully.
    Please try to reinstall Master Data Services to see if this helps.
    Uninstall and Remove Master Data Services:
    http://technet.microsoft.com/en-us/library/ff487065.aspx
    Install Master Data Services:
    http://technet.microsoft.com/en-us/library/ee633752(v=sql.110).aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • PRIMARY KEY-FOREIGN KEY 관계 찾기(MASTER TABLE CONSTRAINT 정보 찾는 SQL)

    제품 : ORACLE SERVER
    작성날짜 : 2003-06-19
    PRIMARY KEY-FOREIGN KEY 관계 찾기
    =================================
    PURPOSE
    이 자료는 MASTER TABLE CONSTRAINT 정보를 찾는 SQL이다.
    Explanation
    SCOTT의 EMP table의 Foreign Key와 부모 제약 조건을 찾으려면
    다음의 질의문을 사용하여 찾을 수 있다.
    SQL> alter table dept add constraint dept_pk primary key (deptno);
    Table altered.
    SQL> alter table emp add constraint emp_dept_fk foreign key(deptno)
    references dept(deptno);
    Table altered.
    SQL> select c.constraint_name as "foreign key",
    p.constraint_name as "referenced key",
    p.constraint_type,
    p.owner,
    p.table_name
    from dba_constraints c, dba_constraints p
    where c.owner = 'SCOTT'
    and c.table_name = 'EMP'
    and c.constraint_type = 'R'
    and c.r_owner = p.owner
    and c.r_constraint_name = p.constraint_name;
    foreign key referenced key C OWNER TABLE_NAME
    EMP_DEPT_FK DEPT_PK P SCOTT DEPT
    Example
    none
    Reference Documents
    <Note:1010844.6>

    I don't have intimate knowledge of SQL Server, but to me, your code seems reasonable. I guess there is some "fine point" (a bug?) to using self referenceing foreign keys in SQL Server. It doesn't seem plausible that the error originates with the driver, unless it's a very intelligent kind of driver.
    A "Gordian Knot" kind of solution to your problem is to ask whether you really need the foreign key constraint in the db schema. Is the table used by something other than your EJB? Anyway, putting logic responsible for the correct functioning of your EJB into the db schema is often a bad practice, as it makes the code harder to understand, maintain, port etc.

  • I want delete the Master data loads which i have already loaded earlier

    Hi BW Guru's,
    I want delete the Master data loads.
    But i am unable to delete.
    is there any option to delete from RSD1
    Please send steps

    Hi,
    If that master data related ifo is present in cube u cont delete master data.
    In that case u have to delete req in cube then u can delete
    let me know further
    *******Asgin Points if usefull***
    Cheers,
    Satya

  • I want to make party leder using sql server

    i want to make party leder using sql server

    What do you mean by "party leder"?
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Master Detail dynamic sql

    Hello,
    I have a master table and detail table (1-n relation) like:
    MASTER_TABLE(ID, FILTER_COLUMN1, FILTER_COLUMN2, FILTER_COLUMN_3); //ID is primary key
    DETAIL_TABLE (ID, MASTER_ID, OTHER_COLUMN1, OTHER_COLUMN2); // ID is primary key, MASTER_ID is foreign key.
    I want to write a stored procedure which takes 3 input parameters to be used to filter MASTER table.
    These input parameters can be null or not null. And I want two REF CURSOR as OUT parameters.
    The stored procedure is like;
    TYPE T_CURSOR IS REF CURSOR;
    PROCEDURE SP_GET_TAX_OFFICES(
    PI_FILTER_COLUMN1 IN MASTER_TABLE.FILTER_COLUMN1%TYPE,
    PI_FILTER_COLUMN2 IN MASTER_TABLE.FILTER_COLUMN2%TYPE,
    PI_FILTER_COLUMN3 IN MASTER_TABLE.FILTER_COLUMN3%TYPE,
    CUR_MASTER OUT T_CURSOR,
         CUR_DETAIL OUT T_CURSOR
    I wrote a dynamic sql like
         master_query := 'select M.* from MASTER TABLE M WHERE 1=1 ';
    IF ((PI_FILTER_COLUMN1 is not null) AND (PI_FILTER_COLUMN1 > 0)) THEN
    dynamic_query := dynamic_query || ' AND M.FILTER_COLUMN1 = :1';
    ELSE
    dynamic_query := dynamic_query || ' AND (1 = 1 or :1 is null)';
    END IF;
         IF ((PI_FILTER_COLUMN2 is not null) AND (PI_FILTER_COLUMN2 > 0)) THEN
    dynamic_query := dynamic_query || ' AND M.FILTER_COLUMN2 = :2';
    ELSE
    dynamic_query := dynamic_query || ' AND (1 = 1 or :2 is null)';
    END IF;
         IF ((PI_FILTER_COLUMN3 is not null) AND (PI_FILTER_COLUMN3 > 0)) THEN
    dynamic_query := dynamic_query || ' AND M.FILTER_COLUMN3 = :3';
    ELSE
    dynamic_query := dynamic_query || ' AND (1 = 1 or :3 is null)';
    END IF;
         OPEN CUR_MASTER FOR master_query
                   USING PI_FILTER_COLUMN1, PI_FILTER_COLUMN2, PI_FILTER_COLUMN3;
    with above I can get the filtered MASTER_TABLE records,
    but what I also want is getting those filtered MASTER_TABLE records's child records as CUR_DETAIL.
    Any help is greatly appreciated. I am sure there is some clever methods to do this.
    Edited by: user10133948 on Oct 12, 2010 8:19 AM

    can you just lose the dynamic sql stuff and add the variable checks to your select?
    not sure what you are after but something like
    SELECT M.*
      FROM MASTER TABLE
    WHERE (
                     (TAX_OFFICE_NO = p_TAX_OFFICE_NO AND PI_FILTER_COLUMN1 > 0)
                       OR
                       NVL (PI_FILTER_COLUMN1, 0) <= 0
           AND
                     (FILTER_COLUMN2 = p_FILTER_COLUMN2 AND p_FILTER_COLUMN2 > 0)
                       OR NVL (PI_FILTER_COLUMN2, 0) <= 0
          and ......Edited by: pollywog on Oct 12, 2010 10:50 AM

  • Error Message while adding Item in Item Master Data- [Microsoft][SQL Server Native Client 10.0][SQL Server]Conversion failed when converting the nvarchar value 's008 01' to data type int. (CINF)

    Dear Experts
    I am getting the following error message while adding item in Item Master data. I have modified the following SBO_SP_transactionNotification in SQL server after that could not able to add the item
    ALTER proc [dbo].[SBO_SP_TransactionNotification]
    @object_type nvarchar(20),                      -- SBO Object Type
    @transaction_type nchar(1),               -- [A]dd, [U]pdate, [D]elete, [C]ancel, C[L]ose
    @num_of_cols_in_key int,
    @list_of_key_cols_tab_del nvarchar(255),
    @list_of_cols_val_tab_del nvarchar(255)
    AS
    begin
    -- Return values
    declare @error  int                       -- Result (0 for no error)
    declare @error_message nvarchar (200)           -- Error string to be displayed
    select @error = 0
    select @error_message = N'Ok'
    --    IF @OBJECT_TYPE = '59' AND (@TRANSACTION_TYPE = 'A' or @TRANSACTION_TYPE = 'U')
      BEGIN
       IF EXISTS(
        SELECT T0.Price FROM IGN1 T0
        where  IsNull(T0.Price, '0') = '0' and T0.DocEntry = @list_of_cols_val_tab_del)
       BEGIN
        SELECT @ERROR=1,@ERROR_MESSAGE='Please insert the price !'
      END
    end
    -- Select the return values
    select @error, @error_message
    end

    Hi Rathna,
    Just put the SP like this, without the -- before the IF. A -- marks the line as a command therefore you need to uncomment and it will work.
    IF @OBJECT_TYPE = '59' AND (@TRANSACTION_TYPE = 'A' or @TRANSACTION_TYPE = 'U')
      BEGIN
       IF EXISTS(
        SELECT T0.Price FROM IGN1 T0
        where  IsNull(T0.Price, '0') = '0' and T0.DocEntry = @list_of_cols_val_tab_del)
       BEGIN
        SELECT @ERROR=1,@ERROR_MESSAGE='Please insert the price !'
      END
    end
    Hope it helps

  • I want to use master password but sites I had previously said not save passwords are not listed in the security section of tools/options. What do I do?

    I was not using the master password provision but have decided to. There are a number of sited where I told Firefox not to save the password. I have since changed my mind and want to use the master password. There are no sites listed as exceptions in the options/tools/remember passwords for sites/exceptions.
    How do I get Firefox to remember passwords for sites I had previously to it not to remember?

    If it is not in the exceptions list you should be able to go to that site again and type in password and it will ask you if you want to save it.
    More about it here.
    https://support.mozilla.com/en-US/kb/make-firefox-remember-usernames-and-passwords

  • Want to connect Oracle 11g from SQL Navigator on Windows

    Hi brothers,
    I'm a new ora man, and having a issue need your help.
    I installed Ora 11g on linux (Ubuntu 8.10) and SQL Navigator 11g on WindowsXP. Now, I want to use SQL Navigtor to connect database server. I tried many times but it still fails with me. I read some articles on Internet but they were not useful to me.
    Here is some information about my system.
    Linux : 192.168.0.82
    Windows : 192.168.0.230
    (+I can ping from Windows to Linux+)
    $ lsnrctl stat
    LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 03-APR-2009 16:18:15
    Copyright (c) 1991, 2007, Oracle.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 11.1.0.6.0 - Production
    Start Date                03-APR-2009 08:33:41
    Uptime                    0 days 7 hr. 44 min. 34 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Log File         /u01/app/oracle/diag/tnslsnr/kimngoc-desktop/listener/alert/log.xml
    Listening Endpoints Summary...
    +(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=kimngoc-desktop)(PORT=1521)))+
    Services Summary...
    Service "intrepid" has 1 instance(s).
    Instance "intrepid", status READY, has 1 handler(s) for this service...
    Service "intrepidXDB" has 1 instance(s).
    Instance "intrepid", status READY, has 1 handler(s) for this service...
    Service "intrepid_XPT" has 1 instance(s).
    Instance "intrepid", status READY, has 1 handler(s) for this service...
    The command completed successfully
    $ps -afe | grep -i listener
    oracle    5383     1  0 08:33 ?        00:00:00 /u01/app/oracle/product/11.1.0/orasample/bin/tnslsnr LISTENER -inherit
    oracle   19705  6600  0 16:23 pts/0    00:00:00 grep -i listener
    Pls help solve this problem if you can.

    download SqlDeveloper from OTN.
    it allows you to connect to remote databases without extra drivers
    BTW, there is a SqlDeveloper forum here on OTN, might be helpful
    SQL Developer

  • I dont want to commit master-detail form untill user press save button

    We have department-employee kind of master detail form.
    1) We click on any record on department block.
    2) Then we change / insert /delete record in employee block.
    3) then we move to anothe department.
    4) now it ask for saving the changes. THIS WE DO NOT WANT.
    5) WE WANT TO SAVE CHANGES WHEN USER CLICK ON SAVE BUTTON.
    6) If user make changes to various employees of various department,
    we want user to cancel changes when ever user wants.
    IN SHORT WHAT WE WANT IS
    No record should be saved untill user press save button below.
    and If user press cancel all changes made must be undo.
    PLEASE DO NOT SUGGEST DO_COMMIT in clear block details,
    We know that and we dont want that option.
    Regards
    Upendra

    Hi URTRIVEDI
    but it gives "could not reserve record (x tries), keep trying?" error.The problem is not within the code given by Francois but in sessions u opened.
    pls make sure u r not running more than one instance of ur form with in one session.
    e.g. FireFox is opening more than one tab at a time every modification u made > compile > Generate , Save & Run only one Form instance
    Hope this helps...
    Regards,
    Amatu Allah

Maybe you are looking for

  • No color in iTunes? Why?

    I think I already know the answer to this post, but is there anyway to bring color back to the features in iTunes 10? With all respect, Apple, the lack of color with icons, checkboxes, buttons, the preferences pane, etc. is a serious downgrade to the

  • E_LIC_ALREADY_FULFILLED_BY_ANOTHER_USER

    I had a crash and had to reinstall my Digital Editions.  I have downloaded all my books from my kobo account, but editions will not accept them. Looking on the website, it says to contact the book seller to ask them to reset the license.  So I contac

  • How do i find hidden files on a memory stick

    i have been given a memry stick which i was told that it as some files on there that i asked for but when i plugged it in it was not showing any files. the guy who gave it to me said they are hidden files and to unhide them first but that was on a pc

  • Error during activating time char

    Hi Gurus, I'm activating my 0CALMONTH and getting error "Table /BI0/HCALMONTH could not be activated" Can anyone help me on this thank you

  • Audigy Switches from 5.1 back to 2 speaker mode everytime I reb

    Anyone know how to fix this? Thanks, Robert.Message Edited by rbarclay on -07-2004 09:09 PM