Upgrade sql error for 11.2 databse on Windows 7 system

Hi ,
We downloaded the database release 11.2.0 from oracle e-delivery website for windows 64 bit. I installed it on the Windows7. The version 11.1 database already is installed on that. When i opened the Database upgrade assistant tool and begin the upgrade , it prompted me can not found the utlu112x.sql. I also can not find this sql under RDBMS/Admin folder. Does anyone has the same issue or any experience on that ?
Thanks,

Pl identify which version of Windows 7. Are you following the official upgrade document ? http://download.oracle.com/docs/cd/E11882_01/server.112/e17222/toc.htm
Srini

Similar Messages

  • SQL error for searches within Arch forums

    Hi guys,
    Since last night, when ever I try to run a search, whether it be a pre-defined search like New Posts or last 12h, or a keyword search within the search page, I get an error:
    Could not delete old search id sessions
    DEBUG MODE
    SQL Error : 1016 Can't open file: 'phpbb_search_results.MYI' (errno: 145)
    DELETE FROM phpbb_search_results WHERE session_id NOT IN ('b8a882a76bd524ca2cae00763907813a', 'ff63868080729e0ee81c83f1e2b08fac', '153ae6e2b7dfa3b1acab764caf6251a9', '61230f3df774fc9e05bbd91b9de8ab6a', 'ebea35cab271f97e47a0edeb867f350b', '852bae4b6e661b50c6e656eacab5204f', '874a6ac043dfb52bd2162d92f3700b28',
    ... (goes on for ages) ...
    'eb520a66784db4079cf64fbf16316d65', '9f2f2ebe525f98222e32c1cefffd7ea1')
    Line : 663
    File : search.php
    This is rather annoying as I can't look for the latest posts easily.

    There's already a discussion about it here:
    http://bbs.archlinux.org/viewtopic.php?t=17004
    Locking to keep continuity.

  • SQL Error 0 during DBACockpit setup in Managed System Configuration

    Hi All,
    I'm getting SQL Error 0 during DBA Cockpit setup in Managed system configuration. I'm trying to connect MsSQL 2005 from Linux system(Solution Manager 7.1 SP10). I have installed necessary ODBC and microsoft drivers. Any suggestions will be appreciated.
    Regards,
    Pragadees

    If I've understood you correctly, you are trying to setup a remote database connection from an SAP Solution Manager system running on Linux with a database which is NOT MSSQL to a database which is MSSQL running on Windows.
    In that case have you checked these SAP notes ?
    1265134 - DBA Cockpit: Connecting a remote database
    1388700 - SolMan 7.0 EHP1 Database Warehouse for MSSQL
    Regards
    RB

  • How to Correctly Trap PL/SQL Errors for APEX

    This is probably a simple fix but, I have been at it for a while and can't seem to find the magic combination.
    I have a page process that calls back end PL/SQL. I have a page item that is populated by said PL/SQL procedure, P35_PROCESSING_MSG. As you know the Process allows me to specify a message for Success and another for Failure. My desire is that, if there is a back end failure, the error will display in the dialog area, using the built-in "Process Error Message" functionality. Instead, after execution, the page item still has its default value and the following, ugly, error displays in the tabular report region.
    report error:
    ORA-20001: Error fetching column value: ORA-01403: no data found
    ORA-06510: PL/SQL: unhandled user-defined exceptionI just don't get why it displays here instead of in the usual failure area. Moreover, I don't understand why the error is "*+unhandled+* user-defined exception" when, as you will see, I have handled it.
    I have a page process to perfom custom MRD for a tabular form. (I don't think this is really germane to the more generic issue but, I bring it up as an explanaintion for the following code sample). I am diliberately causing a DIVIDE BY ZERO error to test the error handling form the back end.
        PROCEDURE PROCESS_MARGIN_CALL_DELETES( as_StatusMsg OUT VARCHAR2 )  
        IS
            lb_InnerErrorOccured    BOOLEAN := FALSE;
            ln_DeleteTargetCnt      NUMBER := 0;
            ln_DeleteTargetRow      NUMBER := 0;
        BEGIN
            ln_DeleteTargetCnt := apex_application.g_f01.COUNT;       
            FOR ln_DeleteTargetIndx IN 1..ln_DeleteTargetCnt
            LOOP
                ln_DeleteTargetRow := apex_application.g_f01(ln_DeleteTargetIndx);
                BEGIN
                    If ( apex_application.g_f14.EXISTS(ln_DeleteTargetRow) ) Then
    select 1/0 into ln_DeleteTargetCnt from dual;
                        DELETE FROM RISKDM2.INTRADAY_ECS_RSKALYST_MRGCALL
                        WHERE RISK_MARGCALL_ID = apex_application.g_f14(ln_DeleteTargetRow);
                    End If;                     
                EXCEPTION
                   WHEN OTHERS THEN
                        as_StatusMsg := as_StatusMsg || SQLERRM;
                        lb_InnerErrorOccured := TRUE;
                END;
            END LOOP;
            If ( lb_InnerErrorOccured = TRUE ) Then
                RAISE INNER_EXCEPTION;    
            Else
                as_StatusMsg := 'Successfully Processed';                  
            End If;
        EXCEPTION
            WHEN INNER_EXCEPTION THEN       
                RAISE_APPLICATION_ERROR( -20001, as_StatusMsg );
            WHEN OTHERS THEN
                as_StatusMsg := as_StatusMsg || SQLERRM;
                RAISE_APPLICATION_ERROR( -20000, as_StatusMsg );
        END; The associated code in APEX is short and sweet:
    BEGIN
       MBRDATA.MEMBER_MGR.PROCESS_MARGIN_CALL_DELETES( :P35_PROCESSING_MSG );
    EXCEPTION
       WHEN OTHERS THEN
          RAISE_APPLICATION_ERROR( -20002, :P35_PROCESSING_MSG );
    END;What I am missing?
    -Joe

    Joe Upshaw wrote:
    This is probably a simple fix but, I have been at it for a while and can't seem to find the magic combination.
    I have a page process that calls back end PL/SQL. I have a page item that is populated by said PL/SQL procedure, P35_PROCESSING_MSG. As you know the Process allows me to specify a message for Success and another for Failure. My desire is that, if there is a back end failure, the error will display in the dialog area, using the built-in "Process Error Message" functionality. Instead, after execution, the page item still has its default value and the following, ugly, error displays in the tabular report region.
    report error:
    ORA-20001: Error fetching column value: ORA-01403: no data found
    ORA-06510: PL/SQL: unhandled user-defined exceptionI just don't get why it displays here instead of in the usual failure area. Moreover, I don't understand why the error is "*+unhandled+* user-defined exception" when, as you will see, I have handled it.<Jedi>These are not the errors you are looking for.</Jedi>
    Anything included under a "report error" during page rendering is not displaying errors associated with a page process, but with the rendering of that report region, in this case clearly:
    ORA-20001: Error fetching column value: ORA-01403: no data foundThe ORA-06510 user-defined exception error relates to this (ORA-20001 being a user-defined error), but it is coming from the APEX framework rather than your code. Often these prove to be untraceable, unrecoverable problems caused by corruption of report metadata, only "fixable" by dropping and recreating the region.
    This may or may not be related to the setting of the page item "by said PL/SQL procedure", but the exceptions reported in the region are not being raised by the procedure.
    What does the debug trace show to be going on?
    Edited by: fac586 on 15-Aug-2012 08:35
    Added "...reported in the region..." for clarity

  • IPad sql error for a complete dummy

    i have been using a website for weeks and until today there has been no problem. I'm now getting an error message and have no idea why. Have tried completely restoring ipad but to no avail. I'm not technically minded in sql code and scripts etc but am able to use ipad and follow any instructions to fix this.
    error message says "Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111)"
    please help

    That is a problem on the website and not your iPad. Can confirm by doing the same transaction on a computer-based browser. Will need to contact whatever support the website has and wait till they fix it over there.
    IF it works on a computer browser (such as Firefox or Internet Explorer), then maybe they changed something and made the site unworkable for the iPad's Safari browser. Can try downloading and using a different browser on the iPad, such as Chrome, Opera, Apollo, Mercury, all for free.
    The iPad does not have or run a local MySQL server.

  • Automation Error for Single Threaded ActiveX on Windows 7

    Hi All,
    I have an old activex control embedded to SAP GUI (using CL_GUI_CONTROL) running without problem for years on Windows XP.
    When I try to run this control using the same SAP GUI version and patch level on Windows 7, the SAP GUI is not responding/crash.
    After deep investigation, I find that every activex with threading model - single threaded, failed to run on SAP GUI on Windows 7. While this single threaded control run without problem on Windows XP.
    I have tried to upgrade the SAP GUI to the latest version & patch (720 patch level 8), the same result occures. The control successfully embedded to SAP GUI 720 on Windows XP, but not on Windows 7.
    I also have verified the single threaded control can run on Windows 7 without problem by embedding the control to other software like Ms. Exce or Ms. IE, and run it successfully on Windows 7.
    Does any one experienced in this issue? or can anyone try to create a simple activex control with single threaded and run it successfully from SAP GUI on Windows 7?
    Below is a sample of ABAP program that I use to embedded the activeX control, and the SAP GUI trace log.
    If needed I can send you the sample activex control (how to attach files?) and step by step to reproduce the error.
    Please advice, is this an SAP GUI issue?
    Thank you.
    Edited by: Sastra Rudy on Sep 28, 2011 1:02 PM

    data to server ***************
    data from server ***************
    <23=Automation: lifetime management, set new IMode 202 (old = 101), CMyAutomationClient=0x057BCAF0
    <23=Automation: SAPAWRFC entering FLUSH with RFC_HANDLE 6
    <23=Automation: CALL METHOD "CreateObject"
                        #0: STRING "{83658045-6571-3232-7082-797884697868}"
                        #1: LONG "1033"
    <23=Automation: Result: OBJECT [#8/0x05AC9558/202/SAPGUI.APPLICATION] ([#handle/IDispatch/imode/created])
    <23=Automation: CALL METHOD "CreateControl" OF [#8/0x05AC9558/202/SAPGUI.APPLICATION]
                        #0: LONG "119" // ShellID !119
                        #1: STRING "SAPGUI.CONTAINERCTRL.1"
                        #2: LONG "1342177280"
                        #3: LONG "10" // ShellID !10
    <23=Automation: Result: OBJECT [#10/0x058840D8/202/SAPGUI.CONTAINERCTRL.1] ([#handle/IDispatch/imode/created])
    <23=Automation: CALL METHOD "SetProperty" OF [#8/0x05AC9558/202/SAPGUI.APPLICATION]
                        #0: LONG "119" !119 = OBJECT [#10/0x058840D8/202/SAPGUI.CONTAINERCTRL.1]
                        #1: LONG "240"
                        #2: LONG "0"
    <23=Automation: CALL METHOD "LinkContainer" OF [#8/0x05AC9558/202/SAPGUI.APPLICATION]
                        #0: LONG "119" !119 = OBJECT [#10/0x058840D8/202/SAPGUI.CONTAINERCTRL.1]
                        #1: STRING "CCONTROL1"
    <23=Automation: CALL METHOD "SetProperty" OF [#8/0x05AC9558/202/SAPGUI.APPLICATION]
                        #0: LONG "119" !119 = OBJECT [#10/0x058840D8/202/SAPGUI.CONTAINERCTRL.1]
                        #1: LONG "290"
                        #2: STRING "1"
    <23=Automation: CALL METHOD "SetProperty" OF [#8/0x05AC9558/202/SAPGUI.APPLICATION]
                        #0: LONG "119" !119 = OBJECT [#10/0x058840D8/202/SAPGUI.CONTAINERCTRL.1]
                        #1: LONG "520"
                        #2: STRING "CCONTROL1"
    <23=Automation: CALL METHOD "RegisterCachedProp" OF [#8/0x05AC9558/202/SAPGUI.APPLICATION]
                        #0: LONG "119" !119 = OBJECT [#10/0x058840D8/202/SAPGUI.CONTAINERCTRL.1]
                        #1: STRING "120"
    <23=Automation: CALL METHOD "RegisterCachedProp" OF [#8/0x05AC9558/202/SAPGUI.APPLICATION]
                        #0: LONG "119" !119 = OBJECT [#10/0x058840D8/202/SAPGUI.CONTAINERCTRL.1]
                        #1: STRING "300"
    <23=Automation: CALL METHOD "CreateControl" OF [#8/0x05AC9558/202/SAPGUI.APPLICATION]
                        #0: LONG "120" // ShellID !120
                        #1: STRING "PSingle.Single"
                        #2: LONG "1409286144"
                        #3: LONG "119" !119 = OBJECT [#10/0x058840D8/202/SAPGUI.CONTAINERCTRL.1]
    <23=Automation(Error): CALL METHOD "CreateControl"[DispID=5] OF [#8/0x05AC9558/202/SAPGUI.APPLICATION]
                        #0: LONG "120" // ShellID !120
                        #1: STRING "PSingle.Single"
                        #2: LONG "1409286144"
                        #3: LONG "119" !119 = OBJECT [#10/0x058840D8/202/SAPGUI.CONTAINERCTRL.1]
    IDispatch::Invoke raised exception
    <23=Automation(Error): CALL METHOD "CreateControl"[DispID=5] OF [#8/0x05AC9558/202/SAPGUI.APPLICATION]
                        #0: LONG "120" // ShellID !120
                        #1: STRING "PSingle.Single"
                        #2: LONG "1409286144"
                        #3: LONG "119" !119 = OBJECT [#10/0x058840D8/202/SAPGUI.CONTAINERCTRL.1]
    IDispatch::Invoke raised exception
    <23=Automation: Result: STRING ""
    <23=Automation: SAPAWRFC: fatal error in CSapAuto::CallMethod, an exception occured

  • Incompitible Print Setting Error for HP LJ 8500n in Windows Vista

    Hi, I have two laptops, one with Windows XP and another with Windows Vista Business. There is a HP LJ 8500n connected with router and accessed by both laptops. Somehow, when I print from Windows XP laptop and I change the print settings there is no error message. But, when I print from Vista Business Laptop, it prints without any error message for default setting, but when I try to change the print setting (to change the paper size or color) the error message comes with "Incompitible Print Settings. It says: "There are one or more conflicting settings. One of the conflicting settings is: Accessory Output Bin: Not Installed. Output Bin: Mailbox 5." Once I click "Ok" it will have same message with output bin changed to Mailbox 6, etc. After I go through approximately 8 to 10 output bins messages, it gives me the screen where I can change the print settings. After that, I can print with revised setting. But, it is very annoying to go through these messages every time I have change the print settings.
    Please reply, Thank You,

     @fshrago 
    For the laserjet 3390, you have the option of using the either the Universal Print Driver (network connection) or Windows Update Driver (USB connection)  in windows 8.1.  Neither of these drivers come with a fax or scan driver.
    To use the fax and scan driver, you will need to use the Windwos Fax and Scan Software however you will need to be usb connected. I have given you links to documents that explain how to use both the Windwos Update driver and the Windows Fax and Scan Software.
    Driver support included in Windows 8 / Windows 8.1 or in Windows Update - usb connection only
    Use the software in Windows 8 to scan - usb connection only
    Please understand that the UPD is a print only driver. If you would like a fax/scan driver you will need to connect via USB and use the Windows Fax and Scan driver along with the Windows Update/In-OS driver.
    Good Luck.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

  • An error occurred while applying SQL script for the feature BackendStore.

    Hello,
    I am using my AD in Windows Azure VMs. I created new VM of A3 (4 cores, 7 GB Memory) Windows Server 2012 R2, Port 1433 MSSQL added, made it a member of Domain and planned to install first Lync Server 2013 on it.
    In "Setup or Remove Lync Server Components" of "Install or Update Lync Server System", got an Red Coloured text "An error
    occurred while applying SQL script for the feature BackendStore."
    I have not enabled monitoring and archiving server in topology builder. I added "Network Service" and assign "Full Control" in Security Permissions of "C:\CsData" and "C:\LyncShare".
    I executed the SQL Setup Wizard and upgraded any instance to 2012.
    Please guide.
    Thanks, Divyaprakash Koli

    Please check you have enough disk space for the disk where the folders are.
    Check view log for detailed log information.
    The following link is a similar thread for you to refer:
    http://social.technet.microsoft.com/Forums/lync/en-US/a3cb9ab0-7451-4df5-af96-3d2784d1b075/an-error-occurred-while-applying-sql-script-for-the-feature-backendstore-for-details-see-the-log?forum=lyncdeploy
    Lisa Zheng
    TechNet Community Support

  • SQL error 942 when logging into shadow system ECC 6.0 upgrade

    Hello,
    I am upgrading an ECC 5.0 system to ECC 6.0, and am trying to log into the shadow system to correct a few activation errors. With just about every transaction I attempt, I get the following error:
    SQL error 942 occurred while accessing program SAPM
    Here is an excerpt from the relevant trace file under /usr/sap/put/<SID>/<Instance>/work:
    A  GENER request remote generation: SAPMS380.
    A  GENER starting inline generation: SAPMS380 (reason: no process available fo
    r remote generation).
    A  GENER got lock for program SAPMS380.
    C  *** ERROR => OCI-call 'OCILobWrite' failed with rc=942
    [dboci.c      2561]
    C  *** ERROR => ORA-942 occurred when writing to a LOB
    [dbsloci.c    10366]
    C  sc_p=112780f80,no=112,idc_p=1127973a0,con=0,act=1,slen=123,smax=1024,#vars=5,
    stmt=11315e9c0,table=REPOLOAD
    C  prep=0,lit=0,nsql=0,lobret=1,#exec=1,dbcnt=1,upsh_p=0,ocistmth_p=11315f5b8
    C  IN : cols=4,rmax=1,xcnt=1,rpc=0,rowi=0,rtot=1,upto=4294967295,rsize=45,vmax=3
    2,bound=1,iobuf_p=112b1c8a0,vda_p=113161020
    C       lobs=1,lmax=4,lpcnt=0,larr=112b1b4c0,lcurr_p=0,rret=0
    C  OUT: cols=1,rmax=1,xcnt=0,rpc=0,rowi=0,rtot=1,upto=0,rsize=4,vmax=64,bound=0,
    iobuf_p=0,vda_p=1131617a0
    C       lobs=1,lmax=4,lpcnt=1,larr=112b1b5c0,lcurr_p=112b1b5c0,rret=1
    C  UPDATE "REPOLOAD" SET "QDATA" = :A0 WHERE "PROGNAME" = :A1 AND "R3STATE" = :A
    2 AND "MACH" = :A3  RET\
    C  URNING "QDATA" INTO :A4;
    B  ***LOG BY4=> sql error 942    performing PUT on table REPOLOAD   [dbrepolo#?
    @ 964] [dbrepolo0964 ]
    B  ***LOG BY0=> ORA-00942: table or view does not exist [dbrepolo#? @ 964] [dbre
    polo0964 ]
    Table REPOLOAD does exist. I am investigating whether it has something to do with the SAPUSER table, but I would appreciate any other ideas anyone may have. I did not encounter this error until the phase ACT_700.
    Regards,
    L. Lessmiller

    Hello Sunny,
    Thanks for your reply. I have looked at Notes 662644 and 400241 thoroughly and cannot find anything wrong with privileges for SAPR3 or SAPR3SHD, nor can I find anything wrong with the OPS$ mechanism.
    Regards,
    L. Lessmiller

  • *** ERROR = CONNECT failed with SQL error '12154' after Oracle Upgrade

    Hello Experts,
    Recently I upgraded my oracle database from 11.2.0.3 to 11.2.0.4.The upgrade completed successfully but I am unable to start the instance.
    R3trans -d failing with the error--
    OCIServerAttach(OCI_DEFAULT) failed with -1=OCI_ERROR
    OCIServerAttach(OCI_DEFAULT) failed with SQL error 12154:    
    ORA-12154: TNS:could not resolve the connect identifier specified
    OCIServerAttach(con=0, svc=069C1630): Error 12154 attaching new srv=069C17D0
    OCIHandleFree(con=0): Server handle srv=069C17D0 freed.          
    server_detach(con=0, svc=069C1630; srv=NULL, stale=2)            
    OCIHandleFree(con=0): Service svc=069C1630 freed (i=1).          
    *** ERROR => CONNECT failed with SQL error '12154'              
    -->oci_get_errmsg (con=0, rc=12154)                              
      OCIErrorGet() -> SQL error code: 12154; buflen=66            
    OCIErrorGet(): error text ->                                    
    ORA-12154: TNS:could not resolve the connect identifier specified
    ocica() -> SQL error code 12154,12154                          
      DbSlConnect(con=0) -> orc=12154, rc=99=DBSL_ERR_DB            
    ***LOG BY2=>sql error 12154  performing CON                      
    ***LOG BY0=>ORA-12154: TNS:could not resolve the connect identifier specified
    I have checked listener is up and running properly.Entry is maintained in tnsnames.ora.
    Also kernel is upgraded with latest path.Curent kernel version--742
    Please suggest on the mentioned error.I am attaching the logs here.Thanks in advance.
    Best Regards,
    Debaditya

    Hi Debadiya
    Kindly check this SAP Notes
    1204916 - Error: "ORA-12154" when connecting to Oracle from a Windows 64-bit platform
    2153975 - Database connectivity fails with ORA-12154
    556232 - Environment settings for R/3/Oracle on Windows
    443867 - ORA-12154 Collective SAP note
    BR
    SS

  • Upgrade OM 2012 to SP1 Beta - Version of SQL Server for the Operational Database and the Data Warehouse

    Hello,
    When I try to verify the prerequisites to upgrade my SCOM 2012 UR2 Platform to SP1 Beta, I have these errors :
    The installed version of SQL Server is not supported for the operational database.
    The installed version of SQL Server is not supported for the data warehouse.
    But when I execute this query Select @@version on my MSSQL Instance, the result is :
    Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64)   Jun 17 2011 00:54:03   Copyright (c) Microsoft Corporation  Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7600: ) (Hypervisor) 
    But
    here, we can see that :
    Microsoft SQL Server: SQL Server SQL 2008 R2 SP1, SQL Server 2008 R2 SP2, SQL Server 2012, SQL Server 2012 SP1, are supported.
    Do I need to pach my MSSQL Server with a specific cumulative update package ?
    Thanks.

    These are the requirements for your SQL:
    SQL Server 2008 and SQL Server 2012 are available in both Standard and Enterprise editions. Operations Manager will function with both editions.
    Operations Manager does not support hosting its databases or SQL Server Reporting Services on a 32-bit edition of SQL Server.
    Using a different version of SQL Server for different Operations Manager features is not supported. The same version should be used for all features.
    SQL Server collation settings for all databases must be one of the following: SQL_Latin1_General_CP1_CI_AS, French_CI_AS, Cyrillic_General_CI_AS, Chinese_PRC_CI_AS, Japanese_CI_AS, Traditional_Spanish_CI_AS, or Latin1_General_CI_AS.  No other collation
    settings are supported.
    The SQL Server Agent service must be started, and the startup type must be set to automatic.
    Side-by-side installation of System Center Operations Manager 2007 R2 reporting and System Center 2012 Service Pack 1 (SP1), Operations Manager reporting on the same server is not supported.
    The db_owner role for the operational database must be a domain account. If you set the SQL Server Authentication to Mixed mode, and then try to add a local SQL Server login on the operational database, the Data Access service will not be able to start.
    For information about how to resolve the issue, see
    System Center Data Access Service Start Up Failure Due to SQL Configuration Change
    If you plan to use the Network Monitoring features of System Center 2012 – Operations Manager, you should move the tempdb database to a separate disk that has multiple spindles. For more information, see
    tempdb Database.
    http://technet.microsoft.com/en-us/library/jj656654.aspx#BKMK_RBF_OperationsDatabase
    Check the SQL server agent service and see whether it is set to automatic AND started. This got me confused at my first SP1 install as well. This is not done by default...
    It's doing common things uncommonly well that brings succes.

  • Sql error 12705  performing CON (Upgrade on Oracle10.2.0.2)

    Hello,
    I'm following the Oracle Upgrade Guide_211 for Oracle upgrade to 10.2.0.2 of our test system. It's SAP R/3 4.6C with 4.6D_EXT supp. pack 2271, HP-UX 11.11 and Oracle 9.2.0.5
    I'm almost done with the upgrade (just startup of SAP instance)
    Now I tested R3trans -d and it failed
    <b>This is R3trans version 6.05 (release 46D - 12.07.06 - 16:40:00).
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'TST'"
    R3trans finished (0012).</b>
    In the trans.log:
    cat trans.log
    4 ETW000 R3trans version 6.05 (release 46D - 12.07.06 - 16:40:00).
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: R3trans -d
    4 ETW000 date&time   : 26.04.2007 - 12:56:34
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [developertra,00000]  Thu Apr 26 12:56:34 2007                             778  0.000778
    4 ETW000  [developertra,00000]  db_con_init called                                    39  0.000817
    4 ETW000  [developertra,00000]  create_con (con_name=R/3)                             39  0.000856
    4 ETW000  [developertra,00000]  Loading DB library '/usr/sap/TST/SYS/exe/run/dboraslib.sl' ...
    4 ETW000                                                                             150  0.001006
    4 ETW000  [developertra,00000]  load shared library (/usr/sap/TST/SYS/exe/run/dboraslib.sl), hdl 0
    4 ETW000                                                                           46480  0.047486
    4 ETW000  [developertra,00000]  Library '/usr/sap/TST/SYS/exe/run/dboraslib.sl' loaded
    4 ETW000                                                                              51  0.047537
    4 ETW000  [developertra,00000]  function DbSlExpFuns loaded from library /usr/sap/TST/SYS/exe/run/dboraslib.sl
    4 ETW000                                                                              79  0.047616
    4 ETW000  [developertra,00000]  Version of library '/usr/sap/TST/SYS/exe/run/dboraslib.sl' is "46D.00", patchlevel (0.2311)
    4 ETW000                                                                             579  0.048195
    4 ETW000  [developertra,00000]  function dsql_db_init loaded from library /usr/sap/TST/SYS/exe/run/dboraslib.sl
    4 ETW000                                                                              56  0.048251
    4 ETW000  [developertra,00000]  function dbdd_exp_funs loaded from library /usr/sap/TST/SYS/exe/run/dboraslib.sl
    4 ETW000                                                                              83  0.048334
    4 ETW000  [developertra,00000]  New connection 0 created                              51  0.048385
    4 ETW000  [developertra,00000]  db_con_connect (con_name=R/3)                        346  0.048731
    4 ETW000  [developertra,00000]  find_con found the following connection for reuse:
    4 ETW000                                                                              48  0.048779
    4 ETW000  [developertra,00000]  Got ORACLE_HOME=/oracle/TST/102_64 from environment
    4 ETW000                                                                            1255  0.050034
    4 ETW000  [developertra,00000]  -->oci_initialize                                     41  0.050075
    4 ETW000  [developertra,00000]  Got ORACLE_SID=TST from environment                  103  0.050178
    4 ETW000  [developertra,00000]  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    4 ETW000                                                                              79  0.050257
    4 ETW000  [developertra,00000]  Logon as OPS$-user to get SAPR3's password            29  0.050286
    4 ETW000  [developertra,00000]  Connecting as /@TST on connection 0 ...               40  0.050326
    4 ETW000  [developertra,00000]  -->oci_logon(con_hdl=0, user='', dbname='TST')        64  0.050390
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'olog' failed: rc = 1019      4272  0.054662
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => <b>CONNECT failed with sql error '1019'</b>4 ETW000                                                                              74  0.054736
    4 ETW000  [developertra,00000]  Try to connect with default password                  31  0.054767
    4 ETW000  [developertra,00000]  Connecting as SAPR3/<pwd>@TST on connection 0 ...
    4 ETW000                                                                              45  0.054812
    4 ETW000  [developertra,00000]  -->oci_logon(con_hdl=0, user='SAPR3', dbname='TST')
    4 ETW000                                                                              42  0.054854
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'olog' failed: rc = 12705   160083  0.214937
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => <b>CONNECT failed with sql error '12705'</b>4 ETW000                                                                             106  0.215043
    4 ETW000  [developertra,00000]  Got ORACLE_SID=TST from environment                  208  0.215251
    4 ETW000  [developertra,00000]  Got NLS_LANG=AMERICAN_AMERICA.WE8DEC from environment
    4 ETW000                                                                              48  0.215299
    4 ETW000  [developertra,00000]  Logon as OPS$-user to get SAPR3's password            27  0.215326
    4 ETW000  [developertra,00000]  Connecting as /@TST on connection 0 ...               30  0.215356
    4 ETW000  [developertra,00000]  -->oci_logon(con_hdl=0, user='', dbname='TST')        30  0.215386
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'olog' failed: rc = 12705   144873  0.360259
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '12705'
    4 ETW000                                                                              79  0.360338
    4 ETW000  [developertra,00000]  Try to connect with default password                  32  0.360370
    4 ETW000  [developertra,00000]  Connecting as SAPR3/<pwd>@TST on connection 0 ...
    4 ETW000                                                                              43  0.360413
    4 ETW000  [developertra,00000]  -->oci_logon(con_hdl=0, user='SAPR3', dbname='TST')
    4 ETW000                                                                              42  0.360455
    4 ETW000  [developertra,00000]  Thu Apr 26 12:56:35 2007                          147148  0.507603
    4 ETW000  [dboci.c     ,00000]  *** ERROR => OCI-call 'olog' failed: rc = 12705       93  0.507696
    4 ETW000  [dbsloci.    ,00000]  *** ERROR => CONNECT failed with sql error '12705'
    4 ETW000                                                                              58  0.507754
    4 ETW000  [dblink      ,00627]  ***LOG BY2=>sql error 12705  performing CON          439  0.508193
    4 ETW000  [dblink      ,00627]  ***LOG BY0=>                                          38  0.508231
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_ora_tnsname = 'TST'"
    For the sidadm user I didnot set the NLS10 variable:
    <i>Ensure that the environment variable ORA_NLS10 is NOT SET for the sidadm user. Setting ORA_NLS10 for the sidadm has resulted in strange system behaviour.!!!!!</i>
    Do ypu have any idea what is the problem how I can start the SAP with my successfully upgraded DB from 9.2.0.5 into 10.2.0.2????
    Many regards,
    Ruzica

    Hello,
    For the user tstadm:
    env
    HOME=/home/tstadm
    PATH=/oracle/TST/102_64/bin:.:/home/tstadm:/usr/sap/TST/SYS/exe/run:/usr/bin:/usr/ccs/bin:/usr/contrib/bin:/opt/hparray/bin:/opt/nettladm/bin:/opt/upgrade/bin:/opt/fcms/bin:/opt/pd/bin:/usr/bin/X11:/usr/contrib/bin/X11:/opt/resmon/bin:/opt/netscape:/opt/scr/bin:/opt/mx/bin:/opt/gnome/bin:/opt/ignite/bin:/opt/graphics/common/bin:/usr/sbin/diag/contrib:/opt/sec_mgmt/spc/bin:/sbin/fs/vxfs3.5/bin
    LOGNAME=tstadm
    SHELL=/usr/bin/csh
    TERM=xterm
    COLUMNS=158
    LINES=60
    MANPATH=/usr/share/man/%L:/usr/share/man/fs/vxfs3.5:/usr/share/man:/usr/contrib/man/%L:/usr/contrib/man:/usr/local/man/%L:/usr/local/man:/opt/upgrade/share/man/%L:/opt/upgrade/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/ignite/share/man/%L:/opt/ignite/share/man:/opt/mx/share/man:/usr/dt/share/man:/opt/samba/man:/opt/resmon/share/man:/opt/scr/share/man:/opt/gnome/man:/opt/graphics/common/man:/opt/hparray/share/man/%L:/opt/hparray/share/man:/opt/sec_mgmt/share/man/%L:/opt/sec_mgmt/share/man:/opt/ssh/share/man:/opt/EMCpower/share
    TZ=MET-1METDST
    SAPSYSTEMNAME=TST
    DIR_LIBRARY=/usr/sap/TST/SYS/exe/run
    SHLIB_PATH=/usr/sap/TST/SYS/exe/run:/oracle/client/10x_64/instantclient
    THREAD=NOPS
    dbms_type=ORA
    dbs_ora_tnsname=TST
    ORACLE_PSRV=TST
    ORACLE_SID=TST
    ORACLE_HOME=/oracle/TST/102_64
    ORACLE_BASE=/oracle
    ORA_NLS33=/oracle/TST/102_64/nls/data
    SAPDATA_HOME=/oracle/TST
    LD_LIBRARY_PATH=/oracle/TST/102_64/lib:/usr/sap/TST/SYS/exe/run
    and for the user oratst:
    env
    HOME=/oracle/TST
    PATH=/oracle/TST/102_64/OPatch:/opt/java1.4/bin:/usr/sbin:/oracle/TST/102_64/bin:/oracle/TST/102_64/OPatch:/opt/java1.4/bin:/usr/sbin:.:/oracle/TST:/usr/sap/TST/SYS/exe/run:/usr/bin:/usr/ccs/bin:/usr/contrib/bin:/opt/hparray/bin:/opt/nettladm/bin:/opt/upgrade/bin:/opt/fcms/bin:/opt/pd/bin:/usr/bin/X11:/usr/contrib/bin/X11:/opt/resmon/bin:/opt/netscape:/opt/scr/bin:/opt/mx/bin:/opt/gnome/bin:/opt/ignite/bin:/opt/graphics/common/bin:/usr/sbin/diag/contrib:/opt/sec_mgmt/spc/bin:/sbin/fs/vxfs3.5/bin
    LOGNAME=oratst
    SHELL=/usr/bin/csh
    TERM=xterm
    COLUMNS=158
    LINES=60
    MANPATH=/usr/share/man/%L:/usr/share/man/fs/vxfs3.5:/usr/share/man:/usr/contrib/man/%L:/usr/contrib/man:/usr/local/man/%L:/usr/local/man:/opt/upgrade/share/man/%L:/opt/upgrade/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/ignite/share/man/%L:/opt/ignite/share/man:/opt/mx/share/man:/usr/dt/share/man:/opt/samba/man:/opt/resmon/share/man:/opt/scr/share/man:/opt/gnome/man:/opt/graphics/common/man:/opt/hparray/share/man/%L:/opt/hparray/share/man:/opt/sec_mgmt/share/man/%L:/opt/sec_mgmt/share/man:/opt/ssh/share/man:/opt/EMCpower/share
    TZ=MET-1METDST
    SAPSYSTEMNAME=TST
    DIR_LIBRARY=/usr/sap/TST/SYS/exe/run
    ORACLE_HOME=/oracle/TST/102_64
    SHLIB_PATH=/oracle/TST/102_64/lib:/usr/sap/TST/SYS/exe/run
    THREAD=NOPS
    ACTIVE_STATE_PERL=TRUE
    dbms_type=ORA
    dbs_ora_tnsname=TST
    ORACLE_PSRV=TST
    ORACLE_SID=TST
    ORACLE_BASE=/oracle
    NLS_LANG=AMERICAN_AMERICA.WE8DEC
    ORA_NLS10=/oracle/TST/102_64/nls/data
    SAPDATA_HOME=/oracle/TST
    SAPARCH=/oracle/TST/sapbackup
    LD_LIBRARY_PATH=/oracle/TST/102_64/lib64
    Many regards,
    Ruzica

  • XdbConfiguration.sql giving errors for package XDB_CONFIGURATION

    Hi,
    I am getting following errors(at the bottom) while running xdbConfiguration.sql before installing the demo.
    I am logged in as sys user(sysdba) and using running
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    on Windows2000.
    Is the wrong version of Oracle. Do I have have 9.2.4.0.
    Thanks in advance for help.
    Om Soni
    Errors for PACKAGE BODY XDB_CONFIGURATION:
    LINE/COL ERROR
    51/6 PL/SQL: Statement ignored
    51/54 PLS-00302: component 'DELETE_FORCE' must be declared
    56/4 PL/SQL: SQL Statement ignored
    56/20 PL/SQL: ORA-22970: name does not correspond to an object view

    Hi ,
    I upgraded to 9.2.0.4.0. The error still shows up while running the xdbConfiguration.sql.
    The following errors show up:
    Errors for PACKAGE BODY XDB_CONFIGURATION:
    LINE/COL ERROR
    51/6 PL/SQL: Statement ignored
    51/54 PLS-00302: component 'DELETE_FORCE' must be declared
    56/4 PL/SQL: SQL Statement ignored
    58/9 PL/SQL: ORA-00942: table or view does not exist
    I got rid of first two error by removing dbms_xdb.DELETE_FORCE from line
    dbms_xdb.deleteResource(targetResource,dbms_xdb.DELETE_FORCE);
    Last two error are at line :
    select make_ref(DATABASE_SUMMARY,'DATABASE_SUMMARY')
    into xmlref
    from DATABASE_SUMMARY;
    Looking at the script DATABASE_SUMMARY is not a object.
    May be the script has a bug in it.
    -Om

  • Error while executing a sql query for select

    HI All,
    ORA-01652: unable to extend temp segment by 128 in tablespace PSTEMP i'm getting this error while i'm executing the sql query for selecting the data.

    I am having 44GB of temp space, while executing the below query my temp space is getting full, Expert please let us know how the issue can be resolved..
    1. I dont want to increase the temp space
    2. I need to tune the query, please provide your recomendations.
    insert /*+APPEND*/ into CST_DSA.HIERARCHY_MISMATCHES
    (REPORT_NUM,REPORT_TYPE,REPORT_DESC,GAP,CARRIED_ITEMS,CARRIED_ITEM_TYPE,NO_OF_ROUTE_OF_CARRIED_ITEM,CARRIED_ITEM_ROUTE_NO,CARRIER_ITEMS,CARRIER_ITEM_TYPE,CARRIED_ITEM_PROTECTION_TYPE,SOURCE_SYSTEM)
    select
    REPORTNUMBER,REPORTTYPE,REPORTDESCRIPTION ,NULL,
    carried_items,carried_item_type,no_of_route_of_carried_item,carried_item_route_no,carrier_items,
    carrier_item_type,carried_item_protection_type,'PACS'
    from
    (select distinct
    c.REPORTNUMBER,c.REPORTTYPE,c.REPORTDESCRIPTION ,NULL,
    a.carried_items,a.carried_item_type,a.no_of_route_of_carried_item,a.carried_item_route_no,a.carrier_items,
    a.carrier_item_type,a.carried_item_protection_type,'PACS'
    from CST_ASIR.HIERARCHY_asir a,CST_DSA.M_PB_CIRCUIT_ROUTING b ,CST_DSA.REPORT_METADATA c
    where a.carrier_item_type in('Connection') and a.carried_item_type in('Service')
    AND a.carrier_items=b.mux
    and c.REPORTNUMBER=(case
    when a.carrier_item_type in ('ServicePackage','Service','Connection') then 10
    else 20
    end)
    and a.carrier_items not in (select carried_items from CST_ASIR.HIERARCHY_asir where carried_item_type in('Connection') ))A
    where not exists
    (select *
    from CST_DSA.HIERARCHY_MISMATCHES B where
    A.REPORTNUMBER=B.REPORT_NUM and
    A.REPORTTYPE=B.REPORT_TYPE and
    A.REPORTDESCRIPTION=B.REPORT_DESC and
    A.CARRIED_ITEMS=B.CARRIED_ITEMS and
    A.CARRIED_ITEM_TYPE=B.CARRIED_ITEM_TYPE and
    A.NO_OF_ROUTE_OF_CARRIED_ITEM=B.NO_OF_ROUTE_OF_CARRIED_ITEM and
    A.CARRIED_ITEM_ROUTE_NO=B.CARRIED_ITEM_ROUTE_NO and
    A.CARRIER_ITEMS=B.CARRIER_ITEMS and
    A.CARRIER_ITEM_TYPE=B.CARRIER_ITEM_TYPE and
    A.CARRIED_ITEM_PROTECTION_TYPE=B.CARRIED_ITEM_PROTECTION_TYPE
    AND B.SOURCE_SYSTEM='PACS'
    Explain Plan
    ==========
    Plan
    INSERT STATEMENT ALL_ROWSCost: 129 Bytes: 1,103 Cardinality: 1                                                        
         20 LOAD AS SELECT CST_DSA.HIERARCHY_MISMATCHES                                                   
              19 PX COORDINATOR                                              
                   18 PX SEND QC (RANDOM) PARALLEL_TO_SERIAL SYS.:TQ10002 :Q1002Cost: 129 Bytes: 1,103 Cardinality: 1                                         
                        17 NESTED LOOPS PARALLEL_COMBINED_WITH_PARENT :Q1002Cost: 129 Bytes: 1,103 Cardinality: 1                                    
                             15 HASH JOIN RIGHT ANTI NA PARALLEL_COMBINED_WITH_PARENT :Q1002Cost: 129 Bytes: 1,098 Cardinality: 1                               
                                  4 PX RECEIVE PARALLEL_COMBINED_WITH_PARENT :Q1002Cost: 63 Bytes: 359,283 Cardinality: 15,621                          
                                       3 PX SEND BROADCAST PARALLEL_TO_PARALLEL SYS.:TQ10001 :Q1001Cost: 63 Bytes: 359,283 Cardinality: 15,621                     
                                            2 PX BLOCK ITERATOR PARALLEL_COMBINED_WITH_CHILD :Q1001Cost: 63 Bytes: 359,283 Cardinality: 15,621                
                                                 1 MAT_VIEW ACCESS FULL MAT_VIEW PARALLEL_COMBINED_WITH_PARENT CST_ASIR.HIERARCHY :Q1001Cost: 63 Bytes: 359,283 Cardinality: 15,621           
                                  14 NESTED LOOPS ANTI PARALLEL_COMBINED_WITH_PARENT :Q1002Cost: 65 Bytes: 40,256,600 Cardinality: 37,448                          
                                       11 HASH JOIN PARALLEL_COMBINED_WITH_PARENT :Q1002Cost: 65 Bytes: 6,366,160 Cardinality: 37,448                     
                                            8 BUFFER SORT PARALLEL_COMBINED_WITH_CHILD :Q1002               
                                                 7 PX RECEIVE PARALLEL_COMBINED_WITH_PARENT :Q1002Cost: 1 Bytes: 214 Cardinality: 2           
                                                      6 PX SEND BROADCAST PARALLEL_FROM_SERIAL SYS.:TQ10000 Cost: 1 Bytes: 214 Cardinality: 2      
                                                           5 INDEX FULL SCAN INDEX CST_DSA.IDX$$_06EF0005 Cost: 1 Bytes: 214 Cardinality: 2
                                            10 PX BLOCK ITERATOR PARALLEL_COMBINED_WITH_CHILD :Q1002Cost: 63 Bytes: 2,359,224 Cardinality: 37,448                
                                                 9 MAT_VIEW ACCESS FULL MAT_VIEW PARALLEL_COMBINED_WITH_PARENT CST_ASIR.HIERARCHY :Q1002Cost: 63 Bytes: 2,359,224 Cardinality: 37,448           
                                       13 TABLE ACCESS BY INDEX ROWID TABLE PARALLEL_COMBINED_WITH_PARENT CST_DSA.HIERARCHY_MISMATCHES :Q1002Cost: 0 Bytes: 905 Cardinality: 1                     
                                            12 INDEX RANGE SCAN INDEX PARALLEL_COMBINED_WITH_PARENT SYS.HIERARCHY_MISMATCHES_IDX3 :Q1002Cost: 0 Cardinality: 1                
                             16 INDEX RANGE SCAN INDEX PARALLEL_COMBINED_WITH_PARENT CST_DSA.IDX$$_06EF0001 :Q1002Cost: 1 Bytes: 5 Cardinality: 1

  • SQL Error: ORA-12899: value too large for column

    Hi,
    I'm trying to understand the above error. It occurs when we are migrating data from one oracle database to another:
    Error report:
    SQL Error: ORA-12899: value too large for column "USER_XYZ"."TAB_XYZ"."COL_XYZ" (actual: 10, maximum: 8)
    12899. 00000 - "value too large for column %s (actual: %s, maximum: %s)"
    *Cause:    An attempt was made to insert or update a column with a value
    which is too wide for the width of the destination column.
    The name of the column is given, along with the actual width
    of the value, and the maximum allowed width of the column.
    Note that widths are reported in characters if character length
    semantics are in effect for the column, otherwise widths are
    reported in bytes.
    *Action:   Examine the SQL statement for correctness.  Check source
    and destination column data types.
    Either make the destination column wider, or use a subset
    of the source column (i.e. use substring).
    The source database runs - Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    The target database runs - Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    The source and target table are identical and the column definitions are exactly the same. The column we get the error on is of CHAR(8). To migrate the data we use either a dblink or oracle datapump, both result in the same error. The data in the column is a fixed length string of 8 characters.
    To resolve the error the column "COL_XYZ" gets widened by:
    alter table TAB_XYZ modify (COL_XYZ varchar2(10));
    -alter table TAB_XYZ succeeded.
    We now move the data from the source into the target table without problem and then run:
    select max(length(COL_XYZ)) from TAB_XYZ;
    -8
    So the maximal string length for this column is 8 characters. To reduce the column width back to its original 8, we then run:
    alter table TAB_XYZ modify (COL_XYZ varchar2(8));
    -Error report:
    SQL Error: ORA-01441: cannot decrease column length because some value is too big
    01441. 00000 - "cannot decrease column length because some value is too big"
    *Cause:   
    *Action:
    So we leave the column width at 10, but the curious thing is - once we have the data in the target table, we can then truncate the same table at source (ie. get rid of all the data) and move the data back in the original table (with COL_XYZ set at CHAR(8)) - without any issue.
    My guess the error has something to do with the storage on the target database, but I would like to understand why. If anybody has an idea or suggestion what to look for - much appreciated.
    Cheers.

    843217 wrote:
    Note that widths are reported in characters if character length
    semantics are in effect for the column, otherwise widths are
    reported in bytes.You are looking at character lengths vs byte lengths.
    The data in the column is a fixed length string of 8 characters.
    select max(length(COL_XYZ)) from TAB_XYZ;
    -8
    So the maximal string length for this column is 8 characters. To reduce the column width back to its original 8, we then run:
    alter table TAB_XYZ modify (COL_XYZ varchar2(8));varchar2(8 byte) or varchar2(8 char)?
    Use SQL Reference for datatype specification, length function, etc.
    For more info, reference {forum:id=50} forum on the topic. And of course, the Globalization support guide.

Maybe you are looking for

  • Is there a way to run apple tv 2g on composite cables?

    i want to install my apple tv 2g in my car, but my apline unit only has composite connections, its an alpine w900bt. i was going to put a router in the car as well so i could mirror my ipad 2 because i had it mounted in my dash about 2mths ago. if an

  • My computer - how can I improve for editing

    I am a hobby-editor . . . :-) Still I am curious to get some hints on which parts of my computer could be improved for video editing. So hopefully someone here could have a look on my hardware! Here are the specs: (in german!) Mainboard: Asus P6X58D-

  • Why would my video clips be running too fast when played on the monitor panel?

    I posted my problem earlier today, but re-reading it maybe I didn't explain myself well enough. My main question is: "why would my video clips be running too fast when played on the monitor panel ?".  This is occuring after I have selected my media f

  • I can't make/receive calls on days old iPhone 4.  Just says Call Failed.

    Same thing is happening with my girlfriend's 3Gs. The person being called hears half a ring then phone cuts out. I have all bars but when call fails bars all drop for a moment, then return. I've reset network settings and everything else. What the **

  • Background Jobs are failing in DEV server after SP upgrade

    Hi Everyone, Below jobs are being failed in dev server after SP upgrade with error variant does not exist. SWWERRE, SWWDHEX, SWWCOND,  SWWCLEAR,SWFSLSDLEX, NON SAP USER UPLOAD System Details: SAP Version: ECC 6.0 Database: SQL 2005 OS: Windows 2003,