Delete/truncate

Hi,
I'm looking for a way of deleting rows quicker than the delete dml sentence.
I know truncate sentences, but i don't want to truncate a table or a partition, I want to delete a great number of rows (identified by a where clause), but not a whole partition or table.
For example, inserting rows i can use insert sentences or i can use sql-loader, ¿is there something similar deleting rows??
My problem is deleting time.
Any advice will be greatly apreciatted. Thanks in advance
Juan

You could also try (what Tom Kite calls) DIY Parallelism.
That's where you do DML against ranges in your table at the same time using separate sessions:
delete your_table
where some_column between 1001 and 2000;
commit;
in a separate session:
delete your_table
where some_column between 2001 and 3000;
commit;
Do this for as many sessions as necessary. I've used 8 with good results.
The ranges must be mutually exclusive and roughly the same number of rows.

Similar Messages

  • Release of space after delete/truncate table

    Hello,
    How does release of space after delete/truncate table works? Is the space used before deletion released once delete is complete or not? Will I see the space occupied by deleted table as free in dba_segments or will I need to reorganize the table (drop and recreate again?). Reason why I am asking is that I can see table with 0 rows, but in dba_segment I can see it is occupying few gigabytes....
    Thank you

    Here is a little illustration for you;
    SQL> conn ogan/password
    Connected.
    SQL> create table ogan_deneme as select * from all_objects;
    Table created.
    SQL> select count(*) from ogan_deneme;
      COUNT(*)
        228470
    SQL> set line 1000
    SQL> set pagesize 1000
    SQL> select * from dba_segments where owner='OGAN';
    OWNER    SEGMENT_NAME        PARTITION_NAME           SEGMENT_TYPE       TABLESPACE_NAME                HEADER_FILE HEADER_BLOCK      BYTES     BLOCKS    EXTENTS INITIAL_EXTENT NEXT_EXTENT MIN_EXTENTS MAX_EXTENTS PCT_INCREASE  FREELISTS FREELIST_GROUPS RELATIVE_FNO BUFFER_
    OGAN      OGAN_DENEME          TABLE              SYSTEM                                 854       319981   *30408704*       *1856*         *44*          65536                       1  2147483645                       1               1          854 DEFAULT
    SQL> truncate table ogan_deneme;
    Table truncated.
    SQL> select * from dba_segments where owner='OGAN';
    OWNER    SEGMENT_NAME        PARTITION_NAME           SEGMENT_TYPE       TABLESPACE_NAME                HEADER_FILE HEADER_BLOCK      BYTES     BLOCKS    EXTENTS INITIAL_EXTENT NEXT_EXTENT MIN_EXTENTS MAX_EXTENTS PCT_INCREASE  FREELISTS FREELIST_GROUPS RELATIVE_FNO BUFFER_
    OGAN      OGAN_DENEME           TABLE              SYSTEM                                 854       319981      *65536*          *4*          *1*          65536                       1  2147483645                       1               1          854 DEFAULT
    SQL>Hope it Helps,
    Ogan

  • Update Function Module Required for Deletion/Truncation of Open Hub Table

    Hi All,
    I need to delete/Truncate DB tables i.e. Ztables using Update FM
    can anyone help me with few Update FM.
    Regards,
    NS.

    If you want to Delete Custom DB table then you can use FM RS_DD_DELETE.
    You can delete, if the table is not used anywhere in SAP.
    Close thread if you got a answer
    Kanagaraja L
    Edited by: Kanagaraja  Lokanathan on Mar 16, 2010 9:54 AM

  • Protect table againts deletes & truncates

    Hi
    I need to protect a table in my schema againts the DDl commands DELETE & TRUNCATE ? is this can be done via triggers ???
    please share your idea's
    thanks in advance
    regards
    raj

    you can use trigger but not to avoid DML statement delete. you can use trigger to see affected row values before or after the event.
    The trigger can be invoked once, when some event occurs, or many times, once for each row affected by an INSERT, UPDATE, or DELETE statement. The trigger can be invoked before or after the event.
    refer:
    http://download.oracle.com/docs/cd/B10500_01/server.920/a96524/c18trigs.htm
    http://psoug.org/reference/table_trigger.html
    Edited by: rajeysh on Jun 22, 2010 3:38 PM

  • Diff between function,procedure/packages  and Diff bet delete,truncate,drop

    Dear all
    I am your pal ranga from IT capital bangalore india. I would like have detail discussion with respect to subject. Pls discuss
    Thanks and Regards
    B.Rangarajan

    Justin gave good advise but here is the short version of the answer just for the heck of it
    Function => stored code suitable for use in the select list of a query and in the where clause conditions that generally accepts one parameter and returns one value. Allows user to extend list of Oracle provided row queries.
    Procedure => stored code designed to return one or more values to the caller. Procedures are generally called from other stored code routines or directly from the user application and not as part of a query or DML statement.
    Package => a collection of stored procedures and functions
    Delete => DML row operation to remove rows from a table
    Truncate => DDL operation to quicky and with minimum overhead mark a table and its associated indexes as empty
    Drop => DDL operation to remove a table or other object from the database
    Maybe these definitions will help until you cover the reading. You can also learn this from the Concepts manual. If you are a DBA this manual is where you should start. For a Developer I would start with the Application Developers - Fundamentals.
    HTH -- Mark D Powell --

  • RSECLOG - how do i delete/truncate this table???

    Hello BW people,
    we turned on auth analysis 6 or 7 months ago and now we have a 260 gb table and i am trying to delete the logs manually thru RSECPROT but it is taking forever to delete one log (approx 30 mins).
    is there either a program in sap or a manual way of deleteing or truncating this table?
    any help would be very much appreciated.

    Thanks Jorge,
    this has worked perfectly.
    I thought there might be a sap program to do this, but this worked.
    thx,
    Erik

  • Different between drop,delete,truncate.

    hi.
    kindly what is the different between drop table,delete table,truncate table.
    thanke you all .

    Hi
    Drop is a ddl statement which removes the existence of the table along with the data.
    Delete is a dml statement which removes only the data from the table.
    Truncate is a ddl statement which removes only the data from the table.
    1) You can specify condition in delete statement which would remove only the specific data from the table. You cannot specify condition in truncate statement so all the data would be remove.
    2) Delete keeps the records in buffers/undo segment so that you can rollback. Whereas truncate does not so you cannot rollback, moreover implicit commit is done on issuing of truncate
    3) Truncate also resets high water mark of the table whereas delete does not.
    Regards

  • Why is the transaction log file not truncated though its simple recovery model?

    My database is simple recovery model and when I view the free space in log file it shows 99%. Why doesn't my log file truncate the committed
    data automatically to free space in ldf file? When I shrink it does shrink. Please advice.
    mayooran99

    My database is simple recovery model and when I view the free space in log file it shows 99%. Why doesn't my log file truncate the committed
    data automatically to free space in ldf file? When I shrink it does shrink. Please advice.
    mayooran99
    If log records were never deleted(truncated) from the transaction log it wont show as 99% free.Simple recoveyr model
    Log truncation automatically frees space in the logical log for reuse by the transaction log and thats what you are seeing. Truncation wont change file size. It more like
    log clearing, marking
    parts of the log free for reuse. 
    As you said "When I shrink it does shrink" I dont see any issues here. Log truncation and shrink file is 2 different things.
    Please read below link for understanding "Transaction log Truncate vs Shrink"
    http://blog.sqlxdetails.com/transaction-log-truncate-why-it-didnt-shrink-my-log/

  • Delete From More than 1 table without using execute immediate

    Hi,
    Am new to PL/SQL, I had been asked to delete few of the table for my ETL jobs in Oracle 10G R2. I have to delete(truncate) few tables and the table names are in another table with a flag to delete it or not. So, when ever I run the job it should check for the flag and for those flag which is 'Y' then for all those tables should be deleted without using the Execute Immediate, because I dont have privilages to use "Execute Immediate" statement.
    Can anyone help me in how to do this.
    Regards
    Senthil

    Then tell you DBA's, or better yet their boss, that they need some additional training in how Oracle actually works.
    Yes, dynamic sql can be a bad thing when it is used to generate hundreds of identical queries that differ ony in the literals used in predicates, but for something like a set of delte table statements or truncate table statements, dynamic sql is no different in terms of the effect on the shared pool that hard coding the sql statements.
    This is a bad use of dynamic sql, because it generates a lot of nearly identical statements due to the lack of bind variables. It is the type of thing your DBA's should, correctly, bring out the lead pipe for.
    DECLARE
       l_sql VARCHAR2(4000);
    BEGIN
       FOR r in (SELECT account_no FROM accounts_to_delete) LOOP
          l_sql := 'DELETE FROM accounts WHERE account_no = '||r.account_no;
          EXECUTE IMMEDIATE l_sql;
       END LOOP;
    END;This will result in one sql statement in the shared pool for every row in accounts_to_delete. Although there is much else wrong with this example, from the bind variable perspective it should be re-written to use bind variables like:
    DECLARE
       l_sql  VARCHAR2(4000);
       l_acct NUMBER;
    BEGIN
       FOR r in (SELECT account_no FROM accounts_to_delete) LOOP
          l_sql := 'DELETE FROM accounts WHERE account_no = :b1';
          EXECUTE IMMEDIATE l_sql USING l_acct;
       END LOOP;
    END;However, since you cannot bind object names into sql statements, the difference in terms of the number of statements that end up in the shared pool between this:
    DECLARE
       l_sql VARCHAR2(4000);
    BEGIN
       FOR r in (SELECT table_name, delete_tab, trunc_tab
                 FROM tables_to_delete) LOOP
          IF r.delete_tab = 'Y' THEN
             l_sql := 'DELETE FROM '||r.table_name;
          ELSIF r.trunc_tab = 'Y' THEN
             l_sql := 'TRUNCATE TABLE '||r.table_name;
          ELSE
             l_sql := NULL;
          END IF;
          EXECUTE IMMEDIATE l_sql;
       END LOOP;
    END;and something like this:
    BEGIN
       DELETE FROM tab1;
       DELETE FROM tab2;
       EXECUTE IMMEDIATE 'TRUNCTE TABLE tab3';
    END;or this as a sql script
    DELETE FROM tab1;
    DELETE FROM tab2;
    TRUNCTE TABLE tab3;is absolutley nothing.
    Note that if you are truncating some of the tables, and wnat/need to use a stored procedure, you are going to have to use dynamic sql for the truncates anyway since trncate is ddl, and you cannot do ddl in pl/sql wiothout using dynamic sql.
    John

  • PI 711 Installation: Loading of 'SAPNTAB' import package: error but no log

    Hello,
    I'm perfromong an installation of a SAP PI 7.11 ystem on windoows Server 2003 and Oracle 10.2 .
    I've perfromed the installation of the DEV system without particular issue.
    But now when tryning to install the QAS system , I can't finish the installation : Im' stuck in the import ABAP step ...
    It is impossible to import the 'SAPNTAB' package. I couln't find the reason.
    I've tried updating the R3load binary, rebooting the server, restarting the instalaltion from scratch but it didn't help.
    Here I provide you the logs, maybe you can help me
    SAPNTAB.log
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20110223195542
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/711_REL/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe: version R7.11/V1.4 [UNICODE]
    Compiled Dec 14 2010 22:52:23
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -stop_on_error -loadprocedure fast
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (DB) INFO: SVERS deleted/truncated #20110223195543
    sapinst_dev.log
    Syslib info about system call. OS message 109 (The pipe has been ended.
    ) after execution of system call 'ReadFile' with parameter ((read end of child process output pipe)), line (403) in file (synxcpipe.cpp).
    WARNING    2011-02-23 19:56:12.607
               CJSlibModule::writeWarning_impl()
    Execution of the command ""C:\Program Files\sapinst_instdir\NW71\INSTALL\SYSTEM\ORA\STD\AS\sapjvm\sapjvm_5\bin\java.exe" -classpath migmon.jar -showversion -Xmx1024m com.sap.inst.migmon.imp.ImportMonitor -sapinst" finished with return code 103. Output:
    java version "1.5.0_14"
    Java(TM) 2 Runtime Environment, Standard Edition (build 5.1.024)
    SAP Java 64-Bit Server VM (build 5.1.024, Sep  4 2008 23:21:58 - 51_REL - optU - windows amd64 - bas2:106386 (mixed mode))
    Import Monitor jobs: running 1, waiting 28, completed 0, failed 0, total 29.
    Loading of 'SAPNTAB' import package: ERROR
    Import Monitor jobs: running 0, waiting 28, completed 0, failed 1, total 29.
    TRACE      2011-02-23 19:56:12.607
    Function setMessageIdOfExceptionMessage: nw.programError
    ERROR      2011-02-23 19:56:12.607
               CJSlibModule::writeError_impl()
    CJS-30022  Program 'Migration Monitor' exits with error code 103. For details see log file(s) import_monitor.java.log, import_monitor.log.
    import_monitor.log
    TRACE: 2011-02-23 19:55:42 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\NW71\INSTALL\SYSTEM\ORA\STD\AS\DDLORA.TPL' template file is started.
    INFO: 2011-02-23 19:55:42 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\NW71\INSTALL\SYSTEM\ORA\STD\AS\DDLORA.TPL' template file is successfully completed.
    Primary key creation: after load.
    Index creation: after load.
    INFO: 2011-02-23 19:55:42
    Data codepage 1100 is determined using TOC file 'E:\SAPCD\51036706\DATA_UNITS\EXP1\DATA\REPOSRC.TOC' for package 'REPOSRC'.
    INFO: 2011-02-23 19:55:42
    Version table 'SVERS' is found in STR file 'E:\SAPCD\51036706\DATA_UNITS\EXP3\DATA\SAPNTAB.STR' from package 'SAPNTAB'.
    INFO: 2011-02-23 19:55:42
    Data conversion tables 'DDNTF,DDNTF_CONV_UC,DDNTT,DDNTT_CONV_UC' are found in STR file 'E:\SAPCD\51036706\DATA_UNITS\EXP3\DATA\SAPNTAB.STR' from package 'SAPNTAB'.
    TRACE: 2011-02-23 19:55:42 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPNTAB' import package is started.
    TRACE: 2011-02-23 19:55:42 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPNTAB' import package into database:
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -stop_on_error -loadprocedure fast
    ERROR: 2011-02-23 19:55:45 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPNTAB' import package is interrupted with R3load error.
    Process 'E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -stop_on_error -loadprocedure fast' exited with return code -1,073,741,819.
    For mode details see 'SAPNTAB.log' file.
    Standard error output:
    sapparam: sapargv(argc, argv) has not been called!
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    WARNING: 2011-02-23 19:56:12
    Cannot continue import because not all import packages with data conversion tables are loaded successfully.
    WARNING: 2011-02-23 19:56:12
    1 error(s) during processing of packages.
    INFO: 2011-02-23 19:56:12
    Import Monitor is stopped.
    Edited by: Raoul Shiro on Feb 23, 2011 8:11 PM
    Edited by: Raoul Shiro on Feb 23, 2011 8:12 PM

    Hello,
    Thank you for your answer.
    I already opened a sap cutomer call, they answered that it it not a database issue,
    I restarted the installationfriom scracth , but i still got the same error :
    Here is the full content of the file SAPNTAB.log
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20110225170643
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/711_REL/src/R3ld/R3load/R3ldmain.c#4 $ SAP
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe: version R7.11/V1.4 [UNICODE]
    Compiled Dec 22 2008 00:13:12
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe -ctf I E:\SAPCD\51036706\DATA_UNITS\EXP3\DATA\SAPNTAB.STR C:\Program Files\sapinst_instdir\NW71\INSTALL\SYSTEM\ORA\STD\AS\DDLORA.TPL SAPNTAB.TSK ORA -l SAPNTAB.log
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe: job completed
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20110225170643
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20110225170643
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/711_REL/src/R3ld/R3load/R3ldmain.c#4 $ SAP
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe: version R7.11/V1.4 [UNICODE]
    Compiled Dec 22 2008 00:13:12
    E:\usr\sap\PIQ\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -stop_on_error -loadprocedure fast
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (DB) INFO: SVERS created #20110225170643
    Regards.
    Raoul

  • SAP on V6R1 - ABAP Import:Program 'Migration Monitor' exits with error code

    Hello,
    We are doing an installation of SAP NW 7.01 SR1 on V6R1.
    <br>
    We were getting error in SAPAPPL2.TSK.bck we merged the files with following command:R3load --merge_only <TSK file> and refering sap note:Note 455195 - R3load: Use of TSK files.
    <br>
    We are again getting error in following steps:
    <br>
    sapinst.log
    <br>
    <br>WARNING 2009-09-30 23:25:28.477
    Execution of the command "Y:\QOpenSys\QIBM\ProdData\JavaVM\jdk14\64bit\bin\java -classpath migmon.jar -showversion -Xmx1024m com.sap.inst.migmon.imp.ImportMonitor -sapinst" finished with return code 103. Output:
    java version "1.4.2"
    Java(TM) 2 Runtime Environment, Standard Edition (build 2.3)
    IBM J9 VM (build 2.3, J2RE 1.4.2 IBM J9 2.3 OS400 ppc64-64 j9ap64142sr13-20090310 (JIT enabled)
    J9VM - 20090309_31291_BHdSMr
    JIT  - 20090210_1447ifx1_r8
    GC   - 200902_24)
    I<br>mport Monitor jobs: running 1, waiting 27, completed 0, failed 0, total 28.
    <br>Loading of 'SAPNTAB' import package: OK
    <br>Import Monitor jobs: running 0, waiting 27, completed 1, failed 0, total 28.
    Import Monitor jobs: running 1, waiting 26, completed 1, failed 0, total 28.<br>
    Import Monitor jobs: running 2, waiting 25, completed 1, failed 0, total 28.<br>
    Import Monitor jobs: running 3, waiting 24, completed 1, failed 0, total 28.<br>
    Loading of 'DOKCLU' import package: OK
    Import Monitor jobs: running 2, waiting 24, completed 2, failed 0, total 28.<br>
    Import Monitor jobs: running 3, waiting 23, completed 2, failed 0, total 28.<br>
    Loading of 'SAPAPPL1' import package: OK
    Import Monitor jobs: running 2, waiting 23, completed 3, failed 0, total 28.<br>
    Import Monitor jobs: running 3, waiting 22, completed 3, failed 0, total 28.<br>
    Loading of 'SAPAPPL2' import package: ERROR
    Import Monitor jobs: running 2, waiting 22, completed 3, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 21, completed 3, failed 1, total 28.<br>
    Loading of 'DD03L' import package: OK
    Import Monitor jobs: running 2, waiting 21, completed 4, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 20, completed 4, failed 1, total 28.<br>
    Loading of 'SCPRSVALS' import package: OK
    Import Monitor jobs: running 2, waiting 20, completed 5, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 19, completed 5, failed 1, total 28.<br>
    Loading of 'SAPSDIC' import package: OK
    Import Monitor jobs: running 2, waiting 19, completed 6, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 18, completed 6, failed 1, total 28.<br>
    Loading of 'SCPRVALS' import package: OK
    Import Monitor jobs: running 2, waiting 18, completed 7, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 17, completed 7, failed 1, total 28.<br>
    Loading of 'SAPSSRC' import package: OK
    Import Monitor jobs: running 2, waiting 17, completed 8, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 16, completed 8, failed 1, total 28.<br>
    Loading of 'FUPARAREF' import package: OK
    Import Monitor jobs: running 2, waiting 16, completed 9, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 15, completed 9, failed 1, total 28.<br>
    Loading of 'TODIR' import package: OK
    Import Monitor jobs: running 2, waiting 15, completed 10, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 14, completed 10, failed 1, total 28.<br>
    Loading of 'SEOSUBCODF' import package: OK
    Import Monitor jobs: running 2, waiting 14, completed 11, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 13, completed 11, failed 1, total 28.<br>
    Loading of 'E071K' import package: OK
    Import Monitor jobs: running 2, waiting 13, completed 12, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 12, completed 12, failed 1, total 28.<br>
    Loading of 'SAPPOOL' import package: OK
    Import Monitor jobs: running 2, waiting 12, completed 13, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 11, completed 13, failed 1, total 28.<br>
    Loading of 'SAPSPROT' import package: OK
    Import Monitor jobs: running 2, waiting 11, completed 14, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 10, completed 14, failed 1, total 28.<br>
    Loading of 'SAPSDOCU' import package: OK
    Import Monitor jobs: running 2, waiting 10, completed 15, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 9, completed 15, failed 1, total 28.<br>
    Loading of 'SAPCLUST' import package: OK
    Import Monitor jobs: running 2, waiting 9, completed 16, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 8, completed 16, failed 1, total 28.<br>
    Loading of 'SAPSLOAD' import package: OK
    Import Monitor jobs: running 2, waiting 8, completed 17, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 7, completed 17, failed 1, total 28.<br>
    Loading of 'SAPSLEXC' import package: OK
    Import Monitor jobs: running 2, waiting 7, completed 18, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 6, completed 18, failed 1, total 28.<br>
    Loading of 'SAPUSER' import package: OK
    Import Monitor jobs: running 2, waiting 6, completed 19, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 5, completed 19, failed 1, total 28.<br>
    Loading of 'SAPDDIM' import package: OK
    Import Monitor jobs: running 2, waiting 5, completed 20, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 4, completed 20, failed 1, total 28.<br>
    Loading of 'SAPDFACT' import package: OK
    Import Monitor jobs: running 2, waiting 4, completed 21, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 3, completed 21, failed 1, total 28.<br>
    Loading of 'SAPDODS' import package: OK
    Import Monitor jobs: running 2, waiting 3, completed 22, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 2, completed 22, failed 1, total 28.<br>
    Loading of 'SAPUSER1' import package: OK
    Import Monitor jobs: running 2, waiting 2, completed 23, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 1, completed 23, failed 1, total 28.<br>
    Loading of 'SAP0000' import package: OK
    Import Monitor jobs: running 2, waiting 1, completed 24, failed 1, total 28.<br>
    Loading of 'SAPAPPL0' import package: OK
    Import Monitor jobs: running 1, waiting 1, completed 25, failed 1, total 28.<br>
    Loading of 'SAPSSEXC' import package: OK
    Import Monitor jobs: running 0, waiting 1, completed 26, failed 1, total 28.<br>
    <br>
    WARNING[E] 2009-09-30 23:25:28.524
    CJS-30022  Program 'Migration Monitor' exits with error code 103. For details see log file(s) import_monitor.java.log,
    <br>
    ERROR 2009-09-30 23:25:28.914
    FCO-00011  The step runMigrationMonitor with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_ABAP_Import_Dialog|ind|ind|ind|ind|5|0|NW_ABAP_Import|ind|ind|ind|ind|0|0|runMigrationMonitor was executed with status ERROR .
    <br>
    <br>import_monitor.log.
    <br>****************************************************************************************************************************************************
    <br>INFO: 2009-09-30 23:26:33 com.sap.inst.migmon.LoadTask run
    Loading of 'SAP0000' import package is successfully completed.
    <br>
    INFO: 2009-09-30 23:30:31 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL0' import package is successfully completed.
    <br>
    INFO: 2009-09-30 23:31:16 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC' import package is successfully completed.
    <br>
    WARNING: 2009-09-30 23:31:31
    Cannot start import of packages with views because not all import packages with tables are loaded successfully.
    WARNING: 2009-09-30 23:31:31
    1 error(s) during processing of packages.
    INFO: 2009-09-30 23:31:31
    Import Monitor is stopped.
    <br>*************************************************************************************************************************************************
    <br>SAPAPPL02.LOG
    <br>**************************************************************************************************************************************************
    <br>TVV1 in *LIBL type *FILE not found. MSGID= Job=015908/SAPINST/QJVAEXEC
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) INFO: TVV1 created #20091001110304
    <br>
    (DB) INFO: TVV1 deleted/truncated #20091001110304
    <br>
    (IMP) INFO: import of TVV1 completed (0 rows) #20091001110304
    <br>
    (DB) ERROR: DDL statement failed<br>
    (ALTER TABLE "TVV1" DROP PRIMARY KEY )<br>
    DbSlExecute: rc = 99<br>
      (SQL error -539)<br>
      error message returned by DbSl:
    Table TVV1 in R3E04DATA does not have a primary or unique key. MSGID= Job=015908/SAPINST/QJVAEXEC
    Your inputs will help a lot.
    Regards,
    Prasad

    Hello,
    We are doing an installation of SAP NW 7.01 SR1 on V6R1.
    <br>
    We were getting error in SAPAPPL2.TSK.bck we merged the files with following command:R3load --merge_only <TSK file> and refering sap note:Note 455195 - R3load: Use of TSK files.
    <br>
    We are again getting error in following steps:
    <br>
    sapinst.log
    <br>
    <br>WARNING 2009-09-30 23:25:28.477
    Execution of the command "Y:\QOpenSys\QIBM\ProdData\JavaVM\jdk14\64bit\bin\java -classpath migmon.jar -showversion -Xmx1024m com.sap.inst.migmon.imp.ImportMonitor -sapinst" finished with return code 103. Output:
    java version "1.4.2"
    Java(TM) 2 Runtime Environment, Standard Edition (build 2.3)
    IBM J9 VM (build 2.3, J2RE 1.4.2 IBM J9 2.3 OS400 ppc64-64 j9ap64142sr13-20090310 (JIT enabled)
    J9VM - 20090309_31291_BHdSMr
    JIT  - 20090210_1447ifx1_r8
    GC   - 200902_24)
    I<br>mport Monitor jobs: running 1, waiting 27, completed 0, failed 0, total 28.
    <br>Loading of 'SAPNTAB' import package: OK
    <br>Import Monitor jobs: running 0, waiting 27, completed 1, failed 0, total 28.
    Import Monitor jobs: running 1, waiting 26, completed 1, failed 0, total 28.<br>
    Import Monitor jobs: running 2, waiting 25, completed 1, failed 0, total 28.<br>
    Import Monitor jobs: running 3, waiting 24, completed 1, failed 0, total 28.<br>
    Loading of 'DOKCLU' import package: OK
    Import Monitor jobs: running 2, waiting 24, completed 2, failed 0, total 28.<br>
    Import Monitor jobs: running 3, waiting 23, completed 2, failed 0, total 28.<br>
    Loading of 'SAPAPPL1' import package: OK
    Import Monitor jobs: running 2, waiting 23, completed 3, failed 0, total 28.<br>
    Import Monitor jobs: running 3, waiting 22, completed 3, failed 0, total 28.<br>
    Loading of 'SAPAPPL2' import package: ERROR
    Import Monitor jobs: running 2, waiting 22, completed 3, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 21, completed 3, failed 1, total 28.<br>
    Loading of 'DD03L' import package: OK
    Import Monitor jobs: running 2, waiting 21, completed 4, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 20, completed 4, failed 1, total 28.<br>
    Loading of 'SCPRSVALS' import package: OK
    Import Monitor jobs: running 2, waiting 20, completed 5, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 19, completed 5, failed 1, total 28.<br>
    Loading of 'SAPSDIC' import package: OK
    Import Monitor jobs: running 2, waiting 19, completed 6, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 18, completed 6, failed 1, total 28.<br>
    Loading of 'SCPRVALS' import package: OK
    Import Monitor jobs: running 2, waiting 18, completed 7, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 17, completed 7, failed 1, total 28.<br>
    Loading of 'SAPSSRC' import package: OK
    Import Monitor jobs: running 2, waiting 17, completed 8, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 16, completed 8, failed 1, total 28.<br>
    Loading of 'FUPARAREF' import package: OK
    Import Monitor jobs: running 2, waiting 16, completed 9, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 15, completed 9, failed 1, total 28.<br>
    Loading of 'TODIR' import package: OK
    Import Monitor jobs: running 2, waiting 15, completed 10, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 14, completed 10, failed 1, total 28.<br>
    Loading of 'SEOSUBCODF' import package: OK
    Import Monitor jobs: running 2, waiting 14, completed 11, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 13, completed 11, failed 1, total 28.<br>
    Loading of 'E071K' import package: OK
    Import Monitor jobs: running 2, waiting 13, completed 12, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 12, completed 12, failed 1, total 28.<br>
    Loading of 'SAPPOOL' import package: OK
    Import Monitor jobs: running 2, waiting 12, completed 13, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 11, completed 13, failed 1, total 28.<br>
    Loading of 'SAPSPROT' import package: OK
    Import Monitor jobs: running 2, waiting 11, completed 14, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 10, completed 14, failed 1, total 28.<br>
    Loading of 'SAPSDOCU' import package: OK
    Import Monitor jobs: running 2, waiting 10, completed 15, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 9, completed 15, failed 1, total 28.<br>
    Loading of 'SAPCLUST' import package: OK
    Import Monitor jobs: running 2, waiting 9, completed 16, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 8, completed 16, failed 1, total 28.<br>
    Loading of 'SAPSLOAD' import package: OK
    Import Monitor jobs: running 2, waiting 8, completed 17, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 7, completed 17, failed 1, total 28.<br>
    Loading of 'SAPSLEXC' import package: OK
    Import Monitor jobs: running 2, waiting 7, completed 18, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 6, completed 18, failed 1, total 28.<br>
    Loading of 'SAPUSER' import package: OK
    Import Monitor jobs: running 2, waiting 6, completed 19, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 5, completed 19, failed 1, total 28.<br>
    Loading of 'SAPDDIM' import package: OK
    Import Monitor jobs: running 2, waiting 5, completed 20, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 4, completed 20, failed 1, total 28.<br>
    Loading of 'SAPDFACT' import package: OK
    Import Monitor jobs: running 2, waiting 4, completed 21, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 3, completed 21, failed 1, total 28.<br>
    Loading of 'SAPDODS' import package: OK
    Import Monitor jobs: running 2, waiting 3, completed 22, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 2, completed 22, failed 1, total 28.<br>
    Loading of 'SAPUSER1' import package: OK
    Import Monitor jobs: running 2, waiting 2, completed 23, failed 1, total 28.<br>
    Import Monitor jobs: running 3, waiting 1, completed 23, failed 1, total 28.<br>
    Loading of 'SAP0000' import package: OK
    Import Monitor jobs: running 2, waiting 1, completed 24, failed 1, total 28.<br>
    Loading of 'SAPAPPL0' import package: OK
    Import Monitor jobs: running 1, waiting 1, completed 25, failed 1, total 28.<br>
    Loading of 'SAPSSEXC' import package: OK
    Import Monitor jobs: running 0, waiting 1, completed 26, failed 1, total 28.<br>
    <br>
    WARNING[E] 2009-09-30 23:25:28.524
    CJS-30022  Program 'Migration Monitor' exits with error code 103. For details see log file(s) import_monitor.java.log,
    <br>
    ERROR 2009-09-30 23:25:28.914
    FCO-00011  The step runMigrationMonitor with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_ABAP_Import_Dialog|ind|ind|ind|ind|5|0|NW_ABAP_Import|ind|ind|ind|ind|0|0|runMigrationMonitor was executed with status ERROR .
    <br>
    <br>import_monitor.log.
    <br>****************************************************************************************************************************************************
    <br>INFO: 2009-09-30 23:26:33 com.sap.inst.migmon.LoadTask run
    Loading of 'SAP0000' import package is successfully completed.
    <br>
    INFO: 2009-09-30 23:30:31 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL0' import package is successfully completed.
    <br>
    INFO: 2009-09-30 23:31:16 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC' import package is successfully completed.
    <br>
    WARNING: 2009-09-30 23:31:31
    Cannot start import of packages with views because not all import packages with tables are loaded successfully.
    WARNING: 2009-09-30 23:31:31
    1 error(s) during processing of packages.
    INFO: 2009-09-30 23:31:31
    Import Monitor is stopped.
    <br>*************************************************************************************************************************************************
    <br>SAPAPPL02.LOG
    <br>**************************************************************************************************************************************************
    <br>TVV1 in *LIBL type *FILE not found. MSGID= Job=015908/SAPINST/QJVAEXEC
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) INFO: TVV1 created #20091001110304
    <br>
    (DB) INFO: TVV1 deleted/truncated #20091001110304
    <br>
    (IMP) INFO: import of TVV1 completed (0 rows) #20091001110304
    <br>
    (DB) ERROR: DDL statement failed<br>
    (ALTER TABLE "TVV1" DROP PRIMARY KEY )<br>
    DbSlExecute: rc = 99<br>
      (SQL error -539)<br>
      error message returned by DbSl:
    Table TVV1 in R3E04DATA does not have a primary or unique key. MSGID= Job=015908/SAPINST/QJVAEXEC
    Your inputs will help a lot.
    Regards,
    Prasad

  • System copy --- Import issue in Import ABAP phase

    HI Team, We are doing migration using system export/import method from win2008/SQL2008 to Win2012/SQL2012 . While doing export there was a problem with table  SOFFCONT1 , So we have followed the note 1922094  and changed the size of the package  from  1 GB to 2 GB  in SOFFCONT1.cmd , After this We have exported the data from the source system using SWPM tool. Now we are importing in to Target system , During the Import ABAP phase we are facing the below issue for same table SOFFCONT1 . Could you please tell us how to fix this issue . Do we need to do same activity for the table while importing also ? =============================================================== H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 11608 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -ctf I \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DATA\SOFFCONT1.STR C:\Program Files\sapinst_instdir\BS2005\ERP60SR3 \LM\COPY\MSS\SYSTEM\CENTRAL\AS-ABAP\DDLMSS.TPL SOFFCONT1.TSK MSS -l SOFFCONT1.log H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job completed H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 10364 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -i SOFFCONT1.cmd -dbcodepage 4103 -l SOFFCONT1.log -loadprocedure fast (DB) INFO: connected to DB (GSI) INFO: dbname = "GFGH-SAP- " (GSI) INFO: vname = "MSSQL " (GSI) INFO: hostname = "GFGH-SAP- " (GSI) INFO: sysname = "Windows NT" (GSI) INFO: nodename = "GFGH-SAP-" (GSI) INFO: release = "6.3" (GSI) INFO: version = "9600 " (GSI) INFO: machine = "6x AMD64 Level 21 (Mod 2 Step 0)" (SQL) INFO: Searching for SQL file SQLFiles.LST (SQL) INFO: SQLFiles.LST not found (SQL) INFO: Searching for SQL file \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/SQLFiles.LST (SQL) INFO: \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/SQLFiles.LST not found (SQL) INFO: Searching for SQL file APPL1.SQL (SQL) INFO: APPL1.SQL not found (SQL) INFO: Searching for SQL file \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/MSS/APPL1.SQL (SQL) INFO: \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/MSS/APPL1.SQL not found (DB) INFO: SOFFCONT1 created (DB) INFO: SOFFCONT1~0 created Interface access functions from dynamic library dbmssslib.dll loaded. (IMP) INFO: ExeFastLoad failed with (IMP) ERROR: ExeFastload: rc = 2 (DB) INFO: disconnected from DB H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error (s) H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712163351 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712191514 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 8772 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -i SOFFCONT1.cmd -dbcodepage 4103 -l SOFFCONT1.log -loadprocedure fast (DB) INFO: connected to DB (GSI) INFO: dbname = "GFGH-SAP- " (GSI) INFO: vname = "MSSQL " (GSI) INFO: hostname = "GFGH-SAP- " (GSI) INFO: sysname = "Windows NT" (GSI) INFO: nodename = "GFGH-SAP-" (GSI) INFO: release = "6.3" (GSI) INFO: version = "9600 " (GSI) INFO: machine = "6x AMD64 Level 21 (Mod 2 Step 0)" (DB) INFO: SOFFCONT1 deleted/truncated Interface access functions from dynamic library dbmssslib.dll loaded. (IMP) INFO: ExeFastLoad failed with (IMP) ERROR: ExeFastload: rc = 2 (DB) INFO: disconnected from DB H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error (s) H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712193907 Thanks, Pavan 91-991 233 6633HI Team, We are doing migration using system export/import method from win2008/SQL2008 to Win2012/SQL2012 . We have exported the data from the source system using SWPM tool. Now we are importing in to Target system , During the Import ABAP phase we are facing the below issue. Could you please tell us how to fix this issue .If you need any other info please reach me out on 91- 991 233 6633 =============================================================== H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 11608 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -ctf I \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DATA\SOFFCONT1.STR C:\Program Files\sapinst_instdir\BS2005\ERP60SR3 \LM\COPY\MSS\SYSTEM\CENTRAL\AS-ABAP\DDLMSS.TPL SOFFCONT1.TSK MSS -l SOFFCONT1.log H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job completed H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 10364 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -i SOFFCONT1.cmd -dbcodepage 4103 -l SOFFCONT1.log -loadprocedure fast (DB) INFO: connected to DB (GSI) INFO: dbname = "GFGH-SAP- " (GSI) INFO: vname = "MSSQL " (GSI) INFO: hostname = "GFGH-SAP- " (GSI) INFO: sysname = "Windows NT" (GSI) INFO: nodename = "GFGH-SAP-" (GSI) INFO: release = "6.3" (GSI) INFO: version = "9600 " (GSI) INFO: machine = "6x AMD64 Level 21 (Mod 2 Step 0)" (SQL) INFO: Searching for SQL file SQLFiles.LST (SQL) INFO: SQLFiles.LST not found (SQL) INFO: Searching for SQL file \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/SQLFiles.LST (SQL) INFO: \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/SQLFiles.LST not found (SQL) INFO: Searching for SQL file APPL1.SQL (SQL) INFO: APPL1.SQL not found (SQL) INFO: Searching for SQL file \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/MSS/APPL1.SQL (SQL) INFO: \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/MSS/APPL1.SQL not found (DB) INFO: SOFFCONT1 created (DB) INFO: SOFFCONT1~0 created Interface access functions from dynamic library dbmssslib.dll loaded. (IMP) INFO: ExeFastLoad failed with (IMP) ERROR: ExeFastload: rc = 2 (DB) INFO: disconnected from DB H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error (s) H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712163351 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712191514 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 8772 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -i SOFFCONT1.cmd -dbcodepage 4103 -l SOFFCONT1.log -loadprocedure fast (DB) INFO: connected to DB (GSI) INFO: dbname = "GFGH-SAP- " (GSI) INFO: vname = "MSSQL " (GSI) INFO: hostname = "GFGH-SAP- " (GSI) INFO: sysname = "Windows NT" (GSI) INFO: nodename = "GFGH-SAP-" (GSI) INFO: release = "6.3" (GSI) INFO: version = "9600 " (GSI) INFO: machine = "6x AMD64 Level 21 (Mod 2 Step 0)" (DB) INFO: SOFFCONT1 deleted/truncated Interface access functions from dynamic library dbmssslib.dll loaded. (IMP) INFO: ExeFastLoad failed with (IMP) ERROR: ExeFastload: rc = 2 (DB) INFO: disconnected from DB H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error (s) H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712193907 Thanks, Pavan 91-991 233 6633

    Hi,
    This is SAP Business one system administration forum. Please find correct forum and repost above discussion to get quick assistance.
    Please close this thread here with  helpful answer.
    Thanks & Regards,
    Nagarajan

  • Installation problem under AIX 5.3 with Oracle 10g

    Hello,
    I start an installation in AIX 5.3 machine with oracle 10. I install oracle 10.0 and pathes for oracle 10.2.0.2.0. I also install and all the interim patches through MOpatch utility. I also install the latest R3trans and R3load for unicode installation. But i have 4 errors under phase IMPORT ABAP. In this phase 33 packages completed succesfully. I have 4 packages with errors.
    In ImportMonitor.Console.Log i have the following errors:
    Import Monitor jobs: running 1, waiting 4, completed 33, failed 0, total 38.
    Import Monitor jobs: running 2, waiting 3, completed 33, failed 0, total 38.
    Import Monitor jobs: running 3, waiting 2, completed 33, failed 0, total 38.
    Loading of 'SAPSSEXC_4' import package: ERROR
    Import Monitor jobs: running 2, waiting 2, completed 33, failed 1, total 38.
    Loading of 'SAPPOOL' import package: ERROR
    Import Monitor jobs: running 1, waiting 2, completed 33, failed 2, total 38.
    Loading of 'DOKCLU' import package: ERROR
    Import Monitor jobs: running 0, waiting 2, completed 33, failed 3, total 38.
    Import Monitor jobs: running 1, waiting 1, completed 33, failed 3, total 38.
    Loading of 'SAPCLUST' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 33, failed 4, total 38.
    Inside SAPSSEXC_4.log i have the following errors:
    /usr/sap/BEQ/SYS/exe/run/R3load: START OF LOG: 20071130102907
    /usr/sap/BEQ/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#14 $ SAP
    /usr/sap/BEQ/SYS/exe/run/R3load: version R7.00/V1.4
    Compiled Oct 20 2007 02:05:46
    /usr/sap/BEQ/SYS/exe/run/R3load -i SAPSSEXC_4.cmd -dbcodepage 4102 -l SAPSSEXC_4.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (DB) INFO: T512CLU deleted/truncated #20071130102908
    myCluster (63.20.Imp): 655: error when retrieving table description for physical table T512CLU.
    myCluster (63.20.Imp): 656: return code received from nametab is 2
    myCluster (63.20.Imp): 299: error when retrieving physical nametab for table T512CLU.
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: disconnected from DB
    /usr/sap/BEQ/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/BEQ/SYS/exe/run/R3load: END OF LOG: 20071130102908
    Under SAPPOOL i have:
    usr/sap/BEQ/SYS/exe/run/R3load: START OF LOG: 20071130102907
    /usr/sap/BEQ/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#14 $ SAP
    /usr/sap/BEQ/SYS/exe/run/R3load: version R7.00/V1.4
    Compiled Oct 20 2007 02:05:46
    /usr/sap/BEQ/SYS/exe/run/R3load -i SAPPOOL.cmd -dbcodepage 4102 -l SAPPOOL.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (DB) INFO: ATAB deleted/truncated #20071130102908
    failed to read short nametab of table AT01                           (rc=2)
    (CNVPOOL) conversion failed for row 0 of table  VARKEY = ã ±ã ±ã °â  â  â  â  â  â  â  â  â  â  â  â  â  â  â  â  â  â  â  â  â  â  
    (CNV) ERROR: data conversion failed.  rc = 2
    (DB) INFO: disconnected from DB
    /usr/sap/BEQ/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/BEQ/SYS/exe/run/R3load: END OF LOG: 20071130102908
    I read notes 421554 and 898181 i execute the directions from the notes to change the R3load and R3trans.
    Do you have any idea how can i procceed with the errors?
    Thank you in advance
    Thanasis Porpodas

    Hi,
    look at sap note 921593 and search for myCluster ,
    read that section following is a part of that note.
    Symptom:
    During the import into a UNICODE system the following error occurs
    (for example in the SAPCLUST.log):
    myCluster (63.2.Imp): 2085: (Warning:) inconsistent field names(source): physical field K1N05 appears as logic K1N5.
    myCluster (63.2.Imp): 2086: (Warning:) further investigation recommended
    myCluster (63.2.Imp): 1924: error when checking key field consistency for logic table TACOPC    .
    myCluster (63.2.Imp): 1927: logic table is canonical.
    myCluster (63.2.Imp): 1930: received return code 2 from c3_uc_check_key_field_descr_consistency.
    myCluster (63.2.Imp): 1224: unable to retrieve nametab info for logic table TACOPC    .
    myCluster (63.2.Imp): 8032: unable to acquire nametab info for logic table TACOPC    .
    myCluster (63.2.Imp): 2807: failed to convert cluster data of cluster item.
    myCluster: CLU4       *00001*
    myCluster (63.2.Imp): 319: error during conversion of cluster item.
    myCluster (63.2.Imp): 322: affected physical table is CLU4.
    (CNV) ERROR: code page conversion failed              rc = 2
    |
    |                              RSCP - Error
    | Error from:            Codepage handling (RSCP)
    | code:  128  RSCPENOOBJ   No such object
    | Dummy module without real rscpmc[34]
    | module: rscpmm  no:    2 line:    75          T100: TS008
    | TSL01: CPV  p3: Dummy-IPC   p4: rscpmc4_init
    `----
    Cause:
    This problem is caused by incorrect data which should have been removed from the source system before the export.
    Solution:
    There are two possible workarounds:
          1. Modify DDL<dbs>.TPL (<dbs> = ADA, DB2, DB4, DB6, IND, MSS, ORA) BEFORE the R3load TSK files are generated;
                  search for the keyword "negdat:" and add "CLU4" and "VER_CLUSTR" to this line.
          2. Modify the TSK file (most probably SAPCLUST.TSK) BEFORE R3load import is (re-)started;
                  search for the lines starting with "D CLU4 I" and "D VER_CLUSTR I" and change the status (i.e. "err" or "xeq") to "ign" or remove the lines.

  • Error while installing solution manager 7.1

    Hi All,
    I am installing SAP Solution Manager 7.1 SR1 i am facing below issue ,any one please suggest me how to proceed further.I am new to sybase .
    An error occurred while processing option SAP Solution Manager 7.1 Support Release 1 > SAP Systems > SAP ASE > Central System > Central System( Last error reported by the step: Program 'Migration Monitor' exits with error code 103. For details see log file(s) import_monitor.java.log, import_monitor.log.). You can now:
    Choose Retry to repeat the current step.
    Choose Log Files to get more information about the error.
    Stop the option and continue with it later.
    Log files are written to C:\Program Files/sapinst_instdir/SOLMAN71/SYSTEM/SYB/CENTRAL/AS.
    import_monitor.java log:
    java version "1.4.2_32"
    Java(TM) 2 Runtime Environment, Standard Edition (build 4.1.016)
    SAP Java Server VM (build 4.1.016 1.6-b03, Dec 31 2011 00:41:53 - 41_REL - optU - windows amd64 - 6 - bas2:164914 (mixed mode))
    Import Monitor jobs: running 1, waiting 28, completed 0, failed 0, total 29.
    Loading of 'SAPNTAB' import package: ERROR
    Import Monitor jobs: running 0, waiting 28, completed 0, failed 1, total 29.
    import_monitor  Log:
    INFO: 2014-07-01 10:49:48
    Import Monitor is started.
    CONFIG: 2014-07-01 10:49:48
    Application options:
    dbCodepage=4103
    dbType=SYB
    extFiles=no
    importDirs=D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_1\DATA_UNITS\EXP1;D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_1\DATA_UNITS\EXP2;D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP3;D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4
    installDir=C:\Program Files\sapinst_instdir\SOLMAN71\SYSTEM\SYB\CENTRAL\AS
    jobNum=8
    loadArgs=-c 99000000 -loadprocedure fast
    monitorTimeout=30
    orderBy=
    r3loadExe=D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe
    sapinst=
    trace=all
    tskFiles=yes
    CONFIG: 2014-07-01 10:49:48
    List of packages with table structure: 'SAP0000'.
    CONFIG: 2014-07-01 10:49:48
    List of packages with views: 'SAPVIEW'.
    TRACE: 2014-07-01 10:49:48 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\SOLMAN71\SYSTEM\SYB\CENTRAL\AS\DDLSYB.TPL' template file is started.
    INFO: 2014-07-01 10:49:48 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\SOLMAN71\SYSTEM\SYB\CENTRAL\AS\DDLSYB.TPL' template file is successfully completed.
    Primary key creation: after load.
    Index creation: after load.
    INFO: 2014-07-01 10:49:48
    Data codepage 1100 is determined using TOC file 'D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_1\DATA_UNITS\EXP1\DATA\SAPSSEXC.TOC' for package 'SAPSSEXC'.
    INFO: 2014-07-01 10:49:48
    Version table 'SVERS' is found in STR file 'D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DATA\SAPNTAB.STR' from package 'SAPNTAB'.
    INFO: 2014-07-01 10:49:48
    Data conversion tables 'DDNTF,DDNTF_CONV_UC,DDNTT,DDNTT_CONV_UC' are found in STR file 'D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DATA\SAPNTAB.STR' from package 'SAPNTAB'.
    INFO: 2014-07-01 10:49:48 com.sap.inst.migmon.LoadThreadDispatcher loadPackage_report
    Monitor jobs: running 1, waiting 28, completed 0, failed 0, total 29  Package Group  max threads: 1 current running threads : 0 processing package: SAPNTAB
    TRACE: 2014-07-01 10:49:48 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPNTAB' import package is started.
    TRACE: 2014-07-01 10:49:48 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPNTAB' import package into database:
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -c 99000000 -loadprocedure fast
    INFO: 2014-07-01 10:49:59 com.sap.inst.migmon.LoadTask run_report
    Monitor jobs: running 0, waiting 28, completed 0, failed 1, total 29  error processing of package SAPNTAB
    ERROR: 2014-07-01 10:49:59 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPNTAB' import package is interrupted with R3load error.
    Process 'D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -c 99000000 -loadprocedure fast' exited with return code 2.
    For mode details see 'SAPNTAB.log' file.
    Standard error output:
    sapparam: sapargv(argc, argv) has not been called!
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    WARNING: 2014-07-01 10:50:18
    Cannot continue import because not all import packages with data conversion tables are loaded successfully.
    WARNING: 2014-07-01 10:50:18
    1 error(s) during processing of packages.
    INFO: 2014-07-01 10:50:18
    Import Monitor is stopped.
    INFO: 2014-07-01 11:09:16
    Import Monitor is started.
    CONFIG: 2014-07-01 11:09:16
    Application options:
    dbCodepage=4103
    dbType=SYB
    extFiles=no
    importDirs=D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_1\DATA_UNITS\EXP1;D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_1\DATA_UNITS\EXP2;D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP3;D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4
    installDir=C:\Program Files\sapinst_instdir\SOLMAN71\SYSTEM\SYB\CENTRAL\AS
    jobNum=8
    loadArgs=-c 99000000 -loadprocedure fast
    monitorTimeout=30
    orderBy=
    r3loadExe=D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe
    sapinst=
    trace=all
    tskFiles=yes
    CONFIG: 2014-07-01 11:09:16
    List of packages with table structure: 'SAP0000'.
    CONFIG: 2014-07-01 11:09:16
    List of packages with views: 'SAPVIEW'.
    TRACE: 2014-07-01 11:09:16 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\SOLMAN71\SYSTEM\SYB\CENTRAL\AS\DDLSYB.TPL' template file is started.
    INFO: 2014-07-01 11:09:16 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\SOLMAN71\SYSTEM\SYB\CENTRAL\AS\DDLSYB.TPL' template file is successfully completed.
    Primary key creation: after load.
    Index creation: after load.
    INFO: 2014-07-01 11:09:16
    Data codepage 1100 is determined using TOC file 'D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_1\DATA_UNITS\EXP1\DATA\SAPSSEXC.TOC' for package 'SAPSSEXC'.
    INFO: 2014-07-01 11:09:16
    Version table 'SVERS' is found in STR file 'D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DATA\SAPNTAB.STR' from package 'SAPNTAB'.
    INFO: 2014-07-01 11:09:16
    Data conversion tables 'DDNTF,DDNTF_CONV_UC,DDNTT,DDNTT_CONV_UC' are found in STR file 'D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DATA\SAPNTAB.STR' from package 'SAPNTAB'.
    INFO: 2014-07-01 11:09:16 com.sap.inst.migmon.LoadThreadDispatcher loadPackage_report
    Monitor jobs: running 1, waiting 28, completed 0, failed 0, total 29  Package Group  max threads: 1 current running threads : 0 processing package: SAPNTAB
    TRACE: 2014-07-01 11:09:16 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPNTAB' import package is started.
    TRACE: 2014-07-01 11:09:16 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPNTAB' import package into database:
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -c 99000000 -loadprocedure fast
    INFO: 2014-07-01 11:09:27 com.sap.inst.migmon.LoadTask run_report
    Monitor jobs: running 0, waiting 28, completed 0, failed 1, total 29  error processing of package SAPNTAB
    ERROR: 2014-07-01 11:09:27 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPNTAB' import package is interrupted with R3load error.
    Process 'D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -c 99000000 -loadprocedure fast' exited with return code 2.
    For mode details see 'SAPNTAB.log' file.
    Standard error output:
    sapparam: sapargv(argc, argv) has not been called!
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    WARNING: 2014-07-01 11:09:46
    Cannot continue import because not all import packages with data conversion tables are loaded successfully.
    WARNING: 2014-07-01 11:09:46
    1 error(s) during processing of packages.
    INFO: 2014-07-01 11:09:46
    Import Monitor is stopped.
    NOTE:
    The same issue has been solved in SCN Thread http://scn.sap.com/thread/3360385. As suggested in that note i am trying to look into the sap note
    Note 1716201 - SYB:Update control.xml files for installation: Sybase ASE
    in service market place but it is displaying as Document not released.
    Kindly can any one help me in provind the above mentioned note or help me how to resolve this issue.
    Regards,
    SURYA.

    HI Divyanshu,
    Below is the SAPNTAB.log:
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140630211543
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/720_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.4 [UNICODE]
    Compiled Dec  2 2011 03:21:30
    patchinfo (patches.h): (0.113) NewDB R3load better support (note 1564286)
    process id 1680
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe -ctf I D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DATA\SAPNTAB.STR C:\Program Files\sapinst_instdir\SOLMAN71\SYSTEM\SYB\CENTRAL\AS\DDLSYB.TPL SAPNTAB.TSK SYB -l SAPNTAB.log
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: job completed
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140630211543
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140630211543
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/720_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.4 [UNICODE]
    Compiled Dec  2 2011 03:21:30
    patchinfo (patches.h): (0.113) NewDB R3load better support (note 1564286)
    process id 1904
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -c 99000000 -loadprocedure fast
    (DB) INFO: connected to DB
    (SQL) INFO: Searching for SQL file SQLFiles.LST
    (SQL) INFO: SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SQLFiles.LST
    (SQL) INFO: D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file SDIC.SQL
    (SQL) INFO: SDIC.SQL not found
    (SQL) INFO: Searching for SQL file D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SYB/SDIC.SQL
    (SQL) INFO: D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SYB/SDIC.SQL not found
    (DB) INFO: SVERS created
    (IMP) INFO: import of SVERS completed (1 rows) #20140630211544
    (DB) INFO: SVERS~0 created
    (DB) INFO: DDNTF created
    (SYB_IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "DDNTF"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: ExeFastload: rc = 2
    (DB) INFO: DDNTF~0 created
    (DB) INFO: DDNTF_CONV_UC created
    (SYB_IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "DDNTF_CONV_UC"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: ExeFastload: rc = 2
    (DB) INFO: DDNTF_CONV_UC~0 created
    (DB) INFO: DDNTT created
    (SYB_IMP) ERROR: DbSlEndModify failed
      rc = 99, table "DDNTT"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: EndFastload: rc = 2
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE  INDEX "DDNTT~0" ON "DDNTT" ( "TABNAME" ) )
    DbSlExecute: rc = 99
      (SQL error 1505)
      error message returned by DbSl:
    [ASE Error SQL1505][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Create unique index aborted on duplicate key.  Primary key is '""'
    (DB) INFO: DDNTT_CONV_UC created
    (SYB_IMP) ERROR: DbSlEndModify failed
      rc = 99, table "DDNTT_CONV_UC"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: EndFastload: rc = 2
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE  INDEX "DDNTT_CONV_UC~0" ON "DDNTT_CONV_UC" ( "TABNAME" ) )
    DbSlExecute: rc = 99
      (SQL error 1505)
      error message returned by DbSl:
    [ASE Error SQL1505][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Create unique index aborted on duplicate key.  Primary key is '""'
    (DB) INFO: disconnected from DB
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 6 error(s)
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140630211555
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140701104948
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/720_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.4 [UNICODE]
    Compiled Dec  2 2011 03:21:30
    patchinfo (patches.h): (0.113) NewDB R3load better support (note 1564286)
    process id 2304
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -c 99000000 -loadprocedure fast
    (DB) INFO: connected to DB
    (DB) INFO: DDNTF deleted/truncated
    (SYB_IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "DDNTF"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: ExeFastload: rc = 2
    (DB) INFO: DDNTF_CONV_UC deleted/truncated
    (SYB_IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "DDNTF_CONV_UC"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: ExeFastload: rc = 2
    (DB) INFO: DDNTT deleted/truncated
    (SYB_IMP) ERROR: DbSlEndModify failed
      rc = 99, table "DDNTT"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: EndFastload: rc = 2
    (SQL) INFO: Searching for SQL file SQLFiles.LST
    (SQL) INFO: SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SQLFiles.LST
    (SQL) INFO: D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file SDIC.SQL
    (SQL) INFO: SDIC.SQL not found
    (SQL) INFO: Searching for SQL file D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SYB/SDIC.SQL
    (SQL) INFO: D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SYB/SDIC.SQL not found
    (DB) ERROR: DDL statement failed
    (DROP INDEX "DDNTT"."DDNTT~0")
    DbSlExecute: rc = 103
      (SQL error 3701)
      error message returned by DbSl:
    [ASE Error SQL3701][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Cannot drop the index 'DDNTT.DDNTT~0', because it doesn't exist in the system catalogs.
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE  INDEX "DDNTT~0" ON "DDNTT" ( "TABNAME" ) )
    DbSlExecute: rc = 99
      (SQL error 1505)
      error message returned by DbSl:
    [ASE Error SQL1505][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Create unique index aborted on duplicate key.  Primary key is '""'
    (DB) INFO: DDNTT_CONV_UC deleted/truncated
    (SYB_IMP) ERROR: DbSlEndModify failed
      rc = 99, table "DDNTT_CONV_UC"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: EndFastload: rc = 2
    (DB) ERROR: DDL statement failed
    (DROP INDEX "DDNTT_CONV_UC"."DDNTT_CONV_UC~0")
    DbSlExecute: rc = 103
      (SQL error 3701)
      error message returned by DbSl:
    [ASE Error SQL3701][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Cannot drop the index 'DDNTT_CONV_UC.DDNTT_CONV_UC~0', because it doesn't exist in the system catalogs.
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE  INDEX "DDNTT_CONV_UC~0" ON "DDNTT_CONV_UC" ( "TABNAME" ) )
    DbSlExecute: rc = 99
      (SQL error 1505)
      error message returned by DbSl:
    [ASE Error SQL1505][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Create unique index aborted on duplicate key.  Primary key is '""'
    (DB) INFO: disconnected from DB
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 6 error(s)
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140701104959
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140701110916
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/720_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.4 [UNICODE]
    Compiled Dec  2 2011 03:21:30
    patchinfo (patches.h): (0.113) NewDB R3load better support (note 1564286)
    process id 2056
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -c 99000000 -loadprocedure fast
    (DB) INFO: connected to DB
    (DB) INFO: DDNTF deleted/truncated
    (SYB_IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "DDNTF"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: ExeFastload: rc = 2
    (DB) INFO: DDNTF_CONV_UC deleted/truncated
    (SYB_IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "DDNTF_CONV_UC"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: ExeFastload: rc = 2
    (DB) INFO: DDNTT deleted/truncated
    (SYB_IMP) ERROR: DbSlEndModify failed
      rc = 99, table "DDNTT"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: EndFastload: rc = 2
    (SQL) INFO: Searching for SQL file SQLFiles.LST
    (SQL) INFO: SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SQLFiles.LST
    (SQL) INFO: D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file SDIC.SQL
    (SQL) INFO: SDIC.SQL not found
    (SQL) INFO: Searching for SQL file D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SYB/SDIC.SQL
    (SQL) INFO: D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SYB/SDIC.SQL not found
    (DB) ERROR: DDL statement failed
    (DROP INDEX "DDNTT"."DDNTT~0")
    DbSlExecute: rc = 103
      (SQL error 3701)
      error message returned by DbSl:
    [ASE Error SQL3701][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Cannot drop the index 'DDNTT.DDNTT~0', because it doesn't exist in the system catalogs.
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE  INDEX "DDNTT~0" ON "DDNTT" ( "TABNAME" ) )
    DbSlExecute: rc = 99
      (SQL error 1505)
      error message returned by DbSl:
    [ASE Error SQL1505][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Create unique index aborted on duplicate key.  Primary key is '""'
    (DB) INFO: DDNTT_CONV_UC deleted/truncated
    (SYB_IMP) ERROR: DbSlEndModify failed
      rc = 99, table "DDNTT_CONV_UC"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: EndFastload: rc = 2
    (DB) ERROR: DDL statement failed
    (DROP INDEX "DDNTT_CONV_UC"."DDNTT_CONV_UC~0")
    DbSlExecute: rc = 103
      (SQL error 3701)
      error message returned by DbSl:
    [ASE Error SQL3701][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Cannot drop the index 'DDNTT_CONV_UC.DDNTT_CONV_UC~0', because it doesn't exist in the system catalogs.
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE  INDEX "DDNTT_CONV_UC~0" ON "DDNTT_CONV_UC" ( "TABNAME" ) )
    DbSlExecute: rc = 99
      (SQL error 1505)
      error message returned by DbSl:
    [ASE Error SQL1505][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Create unique index aborted on duplicate key.  Primary key is '""'
    (DB) INFO: disconnected from DB
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 6 error(s)
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140701110927
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140701120231
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/720_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.4 [UNICODE]
    Compiled Dec  2 2011 03:21:30
    patchinfo (patches.h): (0.113) NewDB R3load better support (note 1564286)
    process id 2288
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -c 99000000 -loadprocedure fast
    (DB) INFO: connected to DB
    (DB) INFO: DDNTF deleted/truncated
    (SYB_IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "DDNTF"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: ExeFastload: rc = 2
    (DB) INFO: DDNTF_CONV_UC deleted/truncated
    (SYB_IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "DDNTF_CONV_UC"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: ExeFastload: rc = 2
    (DB) INFO: DDNTT deleted/truncated
    (SYB_IMP) ERROR: DbSlEndModify failed
      rc = 99, table "DDNTT"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: EndFastload: rc = 2
    (SQL) INFO: Searching for SQL file SQLFiles.LST
    (SQL) INFO: SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SQLFiles.LST
    (SQL) INFO: D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SQLFiles.LST not found
    (SQL) INFO: Searching for SQL file SDIC.SQL
    (SQL) INFO: SDIC.SQL not found
    (SQL) INFO: Searching for SQL file D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SYB/SDIC.SQL
    (SQL) INFO: D:\SAP_DOWNLOADS\INSTALLATION_EXPORTS\EXTRACTED\51042607_2\DATA_UNITS\EXP4\DB/SYB/SDIC.SQL not found
    (DB) ERROR: DDL statement failed
    (DROP INDEX "DDNTT"."DDNTT~0")
    DbSlExecute: rc = 103
      (SQL error 3701)
      error message returned by DbSl:
    [ASE Error SQL3701][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Cannot drop the index 'DDNTT.DDNTT~0', because it doesn't exist in the system catalogs.
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE  INDEX "DDNTT~0" ON "DDNTT" ( "TABNAME" ) )
    DbSlExecute: rc = 99
      (SQL error 1505)
      error message returned by DbSl:
    [ASE Error SQL1505][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Create unique index aborted on duplicate key.  Primary key is '""'
    (DB) INFO: DDNTT_CONV_UC deleted/truncated
    (SYB_IMP) ERROR: DbSlEndModify failed
      rc = 99, table "DDNTT_CONV_UC"
      (SQL error 30128)
      error message returned by DbSl:
    [ASE Error SQL30128:HY000][SAP][ASE ODBC Driver]Data overflow. Increase specified column size or buffer size
    (IMP) ERROR: EndFastload: rc = 2
    (DB) ERROR: DDL statement failed
    (DROP INDEX "DDNTT_CONV_UC"."DDNTT_CONV_UC~0")
    DbSlExecute: rc = 103
      (SQL error 3701)
      error message returned by DbSl:
    [ASE Error SQL3701][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Cannot drop the index 'DDNTT_CONV_UC.DDNTT_CONV_UC~0', because it doesn't exist in the system catalogs.
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE  INDEX "DDNTT_CONV_UC~0" ON "DDNTT_CONV_UC" ( "TABNAME" ) )
    DbSlExecute: rc = 99
      (SQL error 1505)
      error message returned by DbSl:
    [ASE Error SQL1505][SAP][ASE ODBC Driver][Adaptive Server Enterprise]Create unique index aborted on duplicate key.  Primary key is '""'
    (DB) INFO: disconnected from DB
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 6 error(s)
    D:\usr\sap\MSM\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140701120242

  • Error while system copy

    Hi, All:
    Homogeneouos system copy
    OS: Windows 2003
    DB: MaxDB 7.6
    SAP system: CRM 5.0 ABAP&Java
    During the step "Import ABAP data", error occurs. The error messages from <b>sapinst.log, import_monitor.log, SAPSSEXC_1.log</b> are posted below.
    I tried to re-copy the export files from the source system, but it still doesn't work. Does it mean the export file <b>SAPSSEXC_1</b> is destroyed?
    BTW, the cache_size from Database Manager is 180096, is it too small?
    Anyone met the same problem?
    Any info will be highly appreciated! Thanks!
    <b>sapinst.log:</b>
    WARNING 2007-04-02 12:33:06
    Execution of the command "C:\j2sdk1.4.2_09\bin\java.exe -classpath migmon.jar -showversion com.sap.inst.migmon.imp.ImportMonitor -dbType ADA -importDirs G:\CRP\Export\ABAP -installDir "C:\Program Files\sapinst_instdir\CRM05\LM\COPY\ADA\SYSTEM\CENTRAL\AS" -orderBy "" -r3loadExe F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe -tskFiles yes -extFiles no -dbCodepage 4103 -jobNum 4 -monitorTimeout 30 -loadArgs " -nolog -c 0" -trace all -sapinst" finished with return code 103. Output:
    java version "1.4.2_09"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_09-b05)
    Java HotSpot(TM) Client VM (build 1.4.2_09-b05, mixed mode)
    Import Monitor jobs: running 1, waiting 1, completed 29, failed 0, total 31.
    Loading of 'SAPSSEXC_1' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 29, failed 1, total 31.
    ERROR 2007-04-02 12:33:06
    CJS-30022  Program 'Migration Monitor' exits with error code 103. For details see log file(s) import_monitor.java.log, import_monitor.log.
    ERROR 2007-04-02 12:33:06
    FCO-00011  The step runMigrationMonitor with step key |NW_Doublestack_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_ABAP_Import_Dialog|ind|ind|ind|ind|5|0|NW_ABAP_Import|ind|ind|ind|ind|0|0|runMigrationMonitor was executed with status ERROR .
    INFO 2007-04-02 12:36:57
    An error occured and the user decide to stop.\n Current step "|NW_Doublestack_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_ABAP_Import_Dialog|ind|ind|ind|ind|5|0|NW_ABAP_Import|ind|ind|ind|ind|0|0|runMigrationMonitor".
    <b>Import_monitor.log</b>
    INFO: 2007-04-02 12:32:35
    Import Monitor is started.
    CONFIG: 2007-04-02 12:32:35
    Application options:
    dbCodepage=4103
    dbType=ADA
    extFiles=no
    importDirs=G:\CRP\Export\ABAP
    installDir=C:\Program Files\sapinst_instdir\CRM05\LM\COPY\ADA\SYSTEM\CENTRAL\AS
    jobNum=4
    loadArgs= -nolog -c 0
    monitorTimeout=30
    orderBy=
    r3loadExe=F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe
    sapinst=
    trace=all
    tskFiles=yes
    CONFIG: 2007-04-02 12:32:36
    List of packages with table structure: 'SAP0000'.
    CONFIG: 2007-04-02 12:32:36
    List of packages with views: 'SAPVIEW'.
    TRACE: 2007-04-02 12:32:36 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\CRM05\LM\COPY\ADA\SYSTEM\CENTRAL\AS\DDLADA.TPL' template file is started.
    INFO: 2007-04-02 12:32:36 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\CRM05\LM\COPY\ADA\SYSTEM\CENTRAL\AS\DDLADA.TPL' template file is successfully completed.
    Primary key creation: before load.
    Index creation: after load.
    INFO: 2007-04-02 12:32:36
    Data codepage 4103 is determined using TOC file 'G:\CRP\Export\ABAP\DATA\D010INC.TOC' for package 'D010INC'.
    TRACE: 2007-04-02 12:32:36 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC_1' import package is started.
    TRACE: 2007-04-02 12:32:36 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSSEXC_1' import package into database:
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe -i SAPSSEXC_1.cmd -dbcodepage 4103 -l SAPSSEXC_1.log -nolog -c 0
    ERROR: 2007-04-02 12:32:45 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC_1' import package is interrupted with R3load error.
    Process 'F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe -i SAPSSEXC_1.cmd -dbcodepage 4103 -l SAPSSEXC_1.log -nolog -c 0' exited with return code 2.
    For mode details see 'SAPSSEXC_1.log' file.
    Standard error output:
    sapparam: sapargv( argc, argv) has not been called.
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    WARNING: 2007-04-02 12:33:06
    Cannot start import of packages with views because not all import packages with tables are loaded successfully.
    WARNING: 2007-04-02 12:33:06
    1 error(s) during processing of packages.
    INFO: 2007-04-02 12:33:06
    Import Monitor is stopped.
    <b>SAPSSEXC_1.log</b>
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: START OF LOG: 20070401000851
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled May 15 2006 00:47:13
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe -ctf I G:\CRP\Export\ABAP\DATA\SAPSSEXC_1.STR C:\Program Files\sapinst_instdir\CRM05\LM\COPY\ADA\SYSTEM\CENTRAL\AS\DDLADA.TPL SAPSSEXC_1.TSK ADA -l SAPSSEXC_1.log
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: job completed
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 20070401000851
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: START OF LOG: 20070401000851
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled May 15 2006 00:47:13
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe -i SAPSSEXC_1.cmd -dbcodepage 4103 -l SAPSSEXC_1.log -nolog -c 0
    DbSl Trace:   prepare() of C_0000, rc=1, rcSQL=-942 (POS(28) Unknown table name:SVERS)
    DbSl Trace: SQL PREPARE on connection 0, rc=-942 (POS(28) Unknown table name:SVERS)
    (DB) INFO: connected to DB
    (DB) INFO: The MaxDB logwriter is switched off#20070401000851
    (GSI) INFO: dbname   = "CRP                                                                                "
    (GSI) INFO: vname    = "ADABAS D                        "
    (GSI) INFO: hostname = "puserver                                                        "
    (GSI) INFO: sysname  = "Windows NT"
    (GSI) INFO: nodename = "PUSERVER"
    (GSI) INFO: release  = "5.2"
    (GSI) INFO: version  = "3790 Service Pack 1"
    (GSI) INFO: machine  = "4x Intel 801586 (Mod 4 Step 1)"
    (DB) INFO: AAB_ID_PROP created#20070401000851
    (DB) INFO: AAB_ID_PROP~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: AAB_ID_PROPT created#20070401000851
    (DB) INFO: AAB_ID_PROPT~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: BRATEXT created#20070401000851
    (DB) INFO: BRATEXT~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D020S created#20070401000851
    (DB) INFO: D020S~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D020T created#20070401000851
    (DB) INFO: D020T~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D021T created#20070401000851
    (DB) INFO: D021T~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D301T created#20070401000851
    (DB) INFO: D301T~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D301T~A created#20070401000851
    (DB) INFO: D301T~A created#20070401000851
    (DB) INFO: D345T created#20070401000851
    (DB) INFO: D345T~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D347T created#20070401000851
    (DB) INFO: D347T~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DBDIFF created#20070401000851
    (DB) INFO: DBDIFF~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD01L created#20070401000851
    (DB) INFO: DD01L~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD01L~1 created#20070401000851
    (DB) INFO: DD01L~1 created#20070401000851
    (DB) INFO: DD01T created#20070401000851
    (DB) INFO: DD01T~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD02L created#20070401000851
    (DB) INFO: DD02L~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD02L~1 created#20070401000851
    (DB) INFO: DD02L~1 created#20070401000851
    (DB) INFO: DD02T created#20070401000851
    (DB) INFO: DD02T~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD03T created#20070401000851
    (DB) INFO: DD03T~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD04L created#20070401000851
    (DB) INFO: DD04L~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD04L~1 created#20070401000851
    (DB) INFO: DD04L~1 created#20070401000851
    (DB) INFO: DD04T created#20070401000851
    (DB) INFO: DD04T~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD06L created#20070401000851
    (DB) INFO: DD06L~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD06T created#20070401000851
    (DB) INFO: DD06T~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD07L created#20070401000851
    (DB) INFO: DD07L~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD07T created#20070401000851
    (DB) INFO: DD07T~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD09L created#20070401000851
    (DB) INFO: DD09L~0 created#20070401000851
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD20L created#20070401000852
    (DB) INFO: DD20L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD25L created#20070401000852
    (DB) INFO: DD25L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD25L~1 created#20070401000852
    (DB) INFO: DD25L~1 created#20070401000852
    (DB) INFO: DD26S created#20070401000852
    (DB) INFO: DD26S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD26S~1 created#20070401000852
    (DB) INFO: DD26S~1 created#20070401000852
    (DB) INFO: DD26S~2 created#20070401000852
    (DB) INFO: DD26S~2 created#20070401000852
    (DB) INFO: DD27S created#20070401000852
    (DB) INFO: DD27S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD27S~1 created#20070401000852
    (DB) INFO: DD27S~1 created#20070401000852
    (DB) INFO: DD27S~2 created#20070401000852
    (DB) INFO: DD27S~2 created#20070401000852
    (DB) INFO: DD28S created#20070401000852
    (DB) INFO: DD28S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD29L created#20070401000852
    (DB) INFO: DD29L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD30L created#20070401000852
    (DB) INFO: DD30L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD30L~EXI created#20070401000852
    (DB) INFO: DD30L~EXI created#20070401000852
    (DB) INFO: DD30L~MET created#20070401000852
    (DB) INFO: DD30L~MET created#20070401000852
    (DB) INFO: DD30L~TXT created#20070401000852
    (DB) INFO: DD30L~TXT created#20070401000852
    (DB) INFO: DD30T created#20070401000852
    (DB) INFO: DD30T~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD31S created#20070401000852
    (DB) INFO: DD31S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD32S created#20070401000852
    (DB) INFO: DD32S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD32S~ROL created#20070401000852
    (DB) INFO: DD32S~ROL created#20070401000852
    (DB) INFO: DD32S~SQL created#20070401000852
    (DB) INFO: DD32S~SQL created#20070401000852
    (DB) INFO: DD33S created#20070401000852
    (DB) INFO: DD33S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD35L created#20070401000852
    (DB) INFO: DD35L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD35L~1 created#20070401000852
    (DB) INFO: DD35L~1 created#20070401000852
    (DB) INFO: DD36S created#20070401000852
    (DB) INFO: DD36S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD40L created#20070401000852
    (DB) INFO: DD40L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD40L~1 created#20070401000852
    (DB) INFO: DD40L~1 created#20070401000852
    (DB) INFO: DD40T created#20070401000852
    (DB) INFO: DD40T~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD42S created#20070401000852
    (DB) INFO: DD42S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DDTYPES created#20070401000852
    (DB) INFO: DDTYPES~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DDTYPET created#20070401000852
    (DB) INFO: DDTYPET~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DDXTF created#20070401000852
    (DB) INFO: DDXTF~0 created#20070401000852
    (IMP) INFO: import of DDXTF completed (0 rows) #20070401000852
    (DB) INFO: DDXTF_CONV_UC created#20070401000852
    (DB) INFO: DDXTF_CONV_UC~0 created#20070401000852
    (IMP) INFO: import of DDXTF_CONV_UC completed (0 rows) #20070401000852
    (DB) INFO: DDXTT created#20070401000852
    (DB) INFO: DDXTT~0 created#20070401000852
    (IMP) INFO: import of DDXTT completed (0 rows) #20070401000852
    (DB) INFO: DDXTT_CONV_UC created#20070401000852
    (DB) INFO: DDXTT_CONV_UC~0 created#20070401000852
    (IMP) INFO: import of DDXTT_CONV_UC completed (0 rows) #20070401000852
    (DB) INFO: DF03L created#20070401000852
    (DB) INFO: DF03L~0 created#20070401000852
    (IMP) INFO: import of DF03L completed (0 rows) #20070401000852
    (DB) INFO: DF03L~ARI created#20070401000852
    (DB) INFO: DF03L~ARI created#20070401000852
    (DB) INFO: DF03T created#20070401000852
    (DB) INFO: DF03T~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF03T~OBJ created#20070401000852
    (DB) INFO: DF03T~OBJ created#20070401000852
    (DB) INFO: DF04L created#20070401000852
    (DB) INFO: DF04L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF04L~ARI created#20070401000852
    (DB) INFO: DF04L~ARI created#20070401000852
    (DB) INFO: DF04L~STR created#20070401000852
    (DB) INFO: DF04L~STR created#20070401000852
    (DB) INFO: DF04L~SYN created#20070401000852
    (DB) INFO: DF04L~SYN created#20070401000852
    (DB) INFO: DF04T created#20070401000852
    (DB) INFO: DF04T~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF04T~OBJ created#20070401000852
    (DB) INFO: DF04T~OBJ created#20070401000852
    (DB) INFO: DF06L created#20070401000852
    (DB) INFO: DF06L~0 created#20070401000852
    (IMP) INFO: import of DF06L completed (0 rows) #20070401000852
    (DB) INFO: DF06L~ARI created#20070401000852
    (DB) INFO: DF06L~ARI created#20070401000852
    (DB) INFO: DF06T created#20070401000852
    (DB) INFO: DF06T~0 created#20070401000852
    (IMP) INFO: import of DF06T completed (0 rows) #20070401000852
    (DB) INFO: DF07L created#20070401000852
    (DB) INFO: DF07L~0 created#20070401000852
    (IMP) INFO: import of DF07L completed (0 rows) #20070401000852
    (DB) INFO: DF07L~ARI created#20070401000852
    (DB) INFO: DF07L~ARI created#20070401000852
    (DB) INFO: DF07L~OVW created#20070401000852
    (DB) INFO: DF07L~OVW created#20070401000852
    (DB) INFO: DF07T created#20070401000852
    (DB) INFO: DF07T~0 created#20070401000852
    (IMP) INFO: import of DF07T completed (0 rows) #20070401000852
    (DB) INFO: DF08L created#20070401000852
    (DB) INFO: DF08L~0 created#20070401000852
    (IMP) INFO: import of DF08L completed (0 rows) #20070401000852
    (DB) INFO: DF08L~ARI created#20070401000852
    (DB) INFO: DF08L~ARI created#20070401000852
    (DB) INFO: DF08T created#20070401000852
    (DB) INFO: DF08T~0 created#20070401000852
    (IMP) INFO: import of DF08T completed (0 rows) #20070401000852
    (DB) INFO: DF10L created#20070401000852
    (DB) INFO: DF10L~0 created#20070401000852
    (IMP) INFO: import of DF10L completed (0 rows) #20070401000852
    (DB) INFO: DF10L~ARI created#20070401000852
    (DB) INFO: DF10L~ARI created#20070401000852
    (DB) INFO: DF10L~PRE created#20070401000852
    (DB) INFO: DF10L~PRE created#20070401000852
    (DB) INFO: DF10L~SUC created#20070401000852
    (DB) INFO: DF10L~SUC created#20070401000852
    (DB) INFO: DF10T created#20070401000852
    (DB) INFO: DF10T~0 created#20070401000852
    (IMP) INFO: import of DF10T completed (0 rows) #20070401000852
    (DB) INFO: DF11L created#20070401000852
    (DB) INFO: DF11L~0 created#20070401000852
    (IMP) INFO: import of DF11L completed (0 rows) #20070401000852
    (DB) INFO: DF11L~ARI created#20070401000852
    (DB) INFO: DF11L~ARI created#20070401000852
    (DB) INFO: DF11L~REF created#20070401000852
    (DB) INFO: DF11L~REF created#20070401000852
    (DB) INFO: DF11T created#20070401000852
    (DB) INFO: DF11T~0 created#20070401000852
    (IMP) INFO: import of DF11T completed (0 rows) #20070401000852
    (DB) INFO: DF12L created#20070401000852
    (DB) INFO: DF12L~0 created#20070401000852
    (IMP) INFO: import of DF12L completed (0 rows) #20070401000852
    (DB) INFO: DF12L~ARI created#20070401000852
    (DB) INFO: DF12L~ARI created#20070401000852
    (DB) INFO: DF12L~REF created#20070401000852
    (DB) INFO: DF12L~REF created#20070401000852
    (DB) INFO: DF12T created#20070401000852
    (DB) INFO: DF12T~0 created#20070401000852
    (IMP) INFO: import of DF12T completed (0 rows) #20070401000852
    (DB) INFO: DF13L created#20070401000852
    (DB) INFO: DF13L~0 created#20070401000852
    (IMP) INFO: import of DF13L completed (0 rows) #20070401000852
    (DB) INFO: DF13L~ARI created#20070401000852
    (DB) INFO: DF13L~ARI created#20070401000852
    (DB) INFO: DF13T created#20070401000852
    (DB) INFO: DF13T~0 created#20070401000852
    (IMP) INFO: import of DF13T completed (0 rows) #20070401000852
    (DB) INFO: DF14L created#20070401000852
    (DB) INFO: DF14L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF14L~ARI created#20070401000852
    (DB) INFO: DF14L~ARI created#20070401000852
    (DB) INFO: DF14L~PS created#20070401000852
    (DB) INFO: DF14L~PS created#20070401000852
    (DB) INFO: DF14L~REF created#20070401000852
    (DB) INFO: DF14L~REF created#20070401000852
    (DB) INFO: DF14T created#20070401000852
    (DB) INFO: DF14T~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF14T~OBJ created#20070401000852
    (DB) INFO: DF14T~OBJ created#20070401000852
    (DB) INFO: DF15L created#20070401000852
    (DB) INFO: DF15L~0 created#20070401000852
    (IMP) INFO: import of DF15L completed (0 rows) #20070401000852
    (DB) INFO: DF15L~ARI created#20070401000852
    (DB) INFO: DF15L~ARI created#20070401000852
    (DB) INFO: DF15T created#20070401000852
    (DB) INFO: DF15T~0 created#20070401000852
    (IMP) INFO: import of DF15T completed (0 rows) #20070401000852
    (DB) INFO: DF16L created#20070401000852
    (DB) INFO: DF16L~0 created#20070401000852
    (IMP) INFO: import of DF16L completed (0 rows) #20070401000852
    (DB) INFO: DF16L~REF created#20070401000852
    (DB) INFO: DF16L~REF created#20070401000852
    (DB) INFO: DF16T created#20070401000852
    (DB) INFO: DF16T~0 created#20070401000852
    (IMP) INFO: import of DF16T completed (0 rows) #20070401000852
    (DB) INFO: DF16T~OBJ created#20070401000852
    (DB) INFO: DF16T~OBJ created#20070401000852
    (DB) INFO: DF30S created#20070401000852
    (DB) INFO: DF30S~0 created#20070401000852
    (IMP) INFO: import of DF30S completed (0 rows) #20070401000852
    (DB) INFO: DF30S~SUC created#20070401000852
    (DB) INFO: DF30S~SUC created#20070401000852
    (DB) INFO: DF34S created#20070401000852
    (DB) INFO: DF34S~0 created#20070401000852
    (IMP) INFO: import of DF34S completed (0 rows) #20070401000852
    (DB) INFO: DF40D created#20070401000852
    (DB) INFO: DF40D~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF40D~OBJ created#20070401000852
    (DB) INFO: DF40D~OBJ created#20070401000852
    (DB) INFO: DF40D~SHI created#20070401000852
    (DB) INFO: DF40D~SHI created#20070401000852
    (DB) INFO: DF41S created#20070401000852
    (DB) INFO: DF41S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF41S~ACT created#20070401000852
    (DB) INFO: DF41S~ACT created#20070401000852
    (DB) INFO: DF41S~OVW created#20070401000852
    (DB) INFO: DF41S~OVW created#20070401000852
    (DB) INFO: DF42S created#20070401000852
    (DB) INFO: DF42S~0 created#20070401000852
    (IMP) INFO: import of DF42S completed (0 rows) #20070401000852
    (DB) INFO: DF43S created#20070401000852
    (DB) INFO: DF43S~0 created#20070401000852
    (IMP) INFO: import of DF43S completed (0 rows) #20070401000852
    (DB) INFO: DIAPAR created#20070401000852
    (DB) INFO: DIAPAR~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM02L created#20070401000852
    (DB) INFO: DM02L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM02S created#20070401000852
    (DB) INFO: DM02S~0 created#20070401000852
    (IMP) INFO: import of DM02S completed (0 rows) #20070401000852
    (DB) INFO: DM02T created#20070401000852
    (DB) INFO: DM02T~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM03S created#20070401000852
    (DB) INFO: DM03S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM03S~1 created#20070401000852
    (DB) INFO: DM03S~1 created#20070401000852
    (DB) INFO: DM25L created#20070401000852
    (DB) INFO: DM25L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM25L~A created#20070401000852
    (DB) INFO: DM25L~A created#20070401000852
    (DB) INFO: DM26L created#20070401000852
    (DB) INFO: DM26L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM26L~A created#20070401000852
    (DB) INFO: DM26L~A created#20070401000852
    (DB) INFO: DM40L created#20070401000852
    (DB) INFO: DM40L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM40L~A created#20070401000852
    (DB) INFO: DM40L~A created#20070401000852
    (DB) INFO: DM40T created#20070401000852
    (DB) INFO: DM40T~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM41S created#20070401000852
    (DB) INFO: DM41S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM41S~A created#20070401000852
    (DB) INFO: DM41S~A created#20070401000852
    (DB) INFO: DM42S created#20070401000852
    (DB) INFO: DM42S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM42S~A created#20070401000852
    (DB) INFO: DM42S~A created#20070401000852
    (DB) INFO: DM42T created#20070401000852
    (DB) INFO: DM42T~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM42T~1 created#20070401000852
    (DB) INFO: DM42T~1 created#20070401000852
    (DB) INFO: DM43T created#20070401000852
    (DB) INFO: DM43T~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM45L created#20070401000852
    (DB) INFO: DM45L~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM45T created#20070401000852
    (DB) INFO: DM45T~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM46S created#20070401000852
    (DB) INFO: DM46S~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM46S~A created#20070401000852
    (DB) INFO: DM46S~A created#20070401000852
    (DB) INFO: DOKCLU created#20070401000852
    (DB) INFO: DOKCLU~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DOKHL created#20070401000852
    (DB) INFO: DOKHL~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DOKIL created#20070401000852
    (DB) INFO: DOKIL~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DSYST created#20070401000852
    (DB) INFO: DSYST~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DYNPSOURCE created#20070401000852
    (DB) INFO: DYNPSOURCE~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHCOMPCHILDCOMP created#20070401000852
    (DB) INFO: ENHCOMPCHILDCOMP~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHCOMPCHILDCOMP~1 created#20070401000852
    (DB) INFO: ENHCOMPCHILDCOMP~1 created#20070401000852
    (DB) INFO: ENHCOMPCHILDENH created#20070401000852
    (DB) INFO: ENHCOMPCHILDENH~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHCOMPCHILDENH~1 created#20070401000852
    (DB) INFO: ENHCOMPCHILDENH~1 created#20070401000852
    (DB) INFO: ENHCOMPHEADER created#20070401000852
    (DB) INFO: ENHCOMPHEADER~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHCONTRACTTOOL created#20070401000852
    (DB) INFO: ENHCONTRACTTOOL~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHCONTRACTTYP created#20070401000852
    (DB) INFO: ENHCONTRACTTYP~0 created#20070401000852
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHDEPENDENT created#20070401000852
    (DB) INFO: ENHDEPENDENT~0 created#20070401000852
    (IMP) INFO: import of ENHDEPENDENT completed (0 rows) #20070401000852
    (DB) INFO: ENHDEPENDENT~001 created#20070401000852
    (DB) INFO: ENHDEPENDENT~001 created#20070401000852
    (DB) INFO: ENHHEADER created#20070401000853
    (DB) INFO: ENHHEADER~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHHEADER~001 created#20070401000853
    (DB) INFO: ENHHEADER~001 created#20070401000853
    (DB) INFO: ENHHEADER~002 created#20070401000853
    (DB) INFO: ENHHEADER~002 created#20070401000853
    (DB) INFO: ENHLOADINVAL created#20070401000853
    (DB) INFO: ENHLOADINVAL~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHLOG created#20070401000853
    (DB) INFO: ENHLOG~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHLOG~001 created#20070401000853
    (DB) INFO: ENHLOG~001 created#20070401000853
    (DB) INFO: ENHLOG~002 created#20070401000853
    (DB) INFO: ENHLOG~002 created#20070401000853
    (DB) INFO: ENHOBJ created#20070401000853
    (DB) INFO: ENHOBJ~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHOBJ~001 created#20070401000853
    (DB) INFO: ENHOBJ~001 created#20070401000853
    (DB) INFO: ENHOBJ~002 created#20070401000853
    (DB) INFO: ENHOBJ~002 created#20070401000853
    (DB) INFO: ENHOBJ~003 created#20070401000853
    (DB) INFO: ENHOBJ~003 created#20070401000853
    (DB) INFO: ENHOBJ~004 created#20070401000853
    (DB) INFO: ENHOBJ~004 created#20070401000853
    (DB) INFO: ENHOBJCONTRACT created#20070401000853
    (DB) INFO: ENHOBJCONTRACT~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHOBJCONTRACT~001 created#20070401000853
    (DB) INFO: ENHOBJCONTRACT~001 created#20070401000853
    (DB) INFO: ENHSPOTCOMPCOMP created#20070401000853
    (DB) INFO: ENHSPOTCOMPCOMP~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTCOMPCOMP~1 created#20070401000853
    (DB) INFO: ENHSPOTCOMPCOMP~1 created#20070401000853
    (DB) INFO: ENHSPOTCOMPHEAD created#20070401000853
    (DB) INFO: ENHSPOTCOMPHEAD~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTCOMPSPOT created#20070401000853
    (DB) INFO: ENHSPOTCOMPSPOT~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTCOMPSPOT~1 created#20070401000853
    (DB) INFO: ENHSPOTCOMPSPOT~1 created#20070401000853
    (DB) INFO: ENHSPOTCONTRACT created#20070401000853
    (DB) INFO: ENHSPOTCONTRACT~0 created#20070401000853
    (IMP) INFO: import of ENHSPOTCONTRACT completed (0 rows) #20070401000853
    (DB) INFO: ENHSPOTCONTRACT~1 created#20070401000853
    (DB) INFO: ENHSPOTCONTRACT~1 created#20070401000853
    (DB) INFO: ENHSPOTHEADER created#20070401000853
    (DB) INFO: ENHSPOTHEADER~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTOBJ created#20070401000853
    (DB) INFO: ENHSPOTOBJ~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTOBJ~001 created#20070401000853
    (DB) INFO: ENHSPOTOBJ~001 created#20070401000853
    (DB) INFO: ENHSPOTOBJ~002 created#20070401000853
    (DB) INFO: ENHSPOTOBJ~002 created#20070401000853
    (DB) INFO: ENHSPOTTOOLS created#20070401000853
    (DB) INFO: ENHSPOTTOOLS~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTTOOLST created#20070401000853
    (DB) INFO: ENHSPOTTOOLST~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHTAB created#20070401000853
    (DB) INFO: ENHTAB~0 created#20070401000853
    (IMP) INFO: import of ENHTAB completed (0 rows) #20070401000853
    (DB) INFO: ENHTAB~001 created#20070401000853
    (DB) INFO: ENHTAB~001 created#20070401000853
    (DB) INFO: ENHTAB~002 created#20070401000853
    (DB) INFO: ENHTAB~002 created#20070401000853
    (DB) INFO: ENHTAB~003 created#20070401000853
    (DB) INFO: ENHTAB~003 created#20070401000853
    (DB) INFO: ENHTOOLS created#20070401000853
    (DB) INFO: ENHTOOLS~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHTOOLST created#20070401000853
    (DB) INFO: ENHTOOLST~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENH_DY_FCODES created#20070401000853
    (DB) INFO: ENH_DY_FCODES~0 created#20070401000853
    (IMP) INFO: import of ENH_DY_FCODES completed (0 rows) #20070401000853
    (DB) INFO: ENH_DY_GROUP created#20070401000853
    (DB) INFO: ENH_DY_GROUP~0 created#20070401000853
    (IMP) INFO: import of ENH_DY_GROUP completed (0 rows) #20070401000853
    (DB) INFO: ENH_DY_SUBS created#20070401000853
    (DB) INFO: ENH_DY_SUBS~0 created#20070401000853
    (IMP) INFO: import of ENH_DY_SUBS completed (0 rows) #20070401000853
    (DB) INFO: ENLFDIR created#20070401000853
    (DB) INFO: ENLFDIR~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENLFDIR~1 created#20070401000853
    (DB) INFO: ENLFDIR~1 created#20070401000853
    (DB) INFO: EUDB created#20070401000853
    (DB) INFO: EUDB~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: EUGUITEXT created#20070401000853
    (DB) INFO: EUGUITEXT~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: EUOBJ created#20070401000853
    (DB) INFO: EUOBJ~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: EUOBJEDIT created#20070401000853
    (DB) INFO: EUOBJEDIT~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: EUOBJT created#20070401000853
    (DB) INFO: EUOBJT~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: FUNCT created#20070401000853
    (DB) INFO: FUNCT~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: FUNCT~1 created#20070401000853
    (DB) INFO: FUNCT~1 created#20070401000853
    (DB) INFO: FUPARAREF created#20070401000853
    (DB) INFO: FUPARAREF~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: FUPARAREF~1 created#20070401000853
    (DB) INFO: FUPARAREF~1 created#20070401000853
    (DB) INFO: FUPARAREF~2 created#20070401000853
    (DB) INFO: FUPARAREF~2 created#20070401000853
    (DB) INFO: IADB2 created#20070401000853
    (DB) INFO: IADB2~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: IADB6 created#20070401000853
    (DB) INFO: IADB6~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: IAINF created#20070401000853
    (DB) INFO: IAINF~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: IAMSS created#20070401000853
    (DB) INFO: IAMSS~0 created#20070401000853
    (IMP) INFO: import of IAMSS completed (0 rows) #20070401000853
    (DB) INFO: IAORA created#20070401000853
    (DB) INFO: IAORA~0 created#20070401000853
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: IGDB2 created#20070401000853

    Try to update the R3load and other kernel, but it doesn't work.
    See <b>sapssexc_1 log</b>:
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: START OF LOG: 20070402212623
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#11 $ SAP
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: version R7.00/V1.4 [UNICODE]
    <b>Compiled Jan 29 2007 01:19:45</b>
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe -i SAPSSEXC_1.cmd -dbcodepage 4103 -l SAPSSEXC_1.log -nolog -c 0
    (DB) INFO: connected to DB
    (DB) INFO: The MaxDB logwriter is switched off#20070402212623
    (GSI) INFO: dbname   = "CRP                                                                                "
    (GSI) INFO: vname    = "ADABAS D                        "
    (GSI) INFO: hostname = "puserver                                                        "
    (GSI) INFO: sysname  = "Windows NT"
    (GSI) INFO: nodename = "PUSERVER"
    (GSI) INFO: release  = "5.2"
    (GSI) INFO: version  = "3790 Service Pack 1"
    (GSI) INFO: machine  = "4x Intel 801586 (Mod 4 Step 1)"
    (DB) INFO: AAB_ID_PROP deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: AAB_ID_PROPT deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: BRATEXT deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D020S deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D020T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D021T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D301T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D345T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: D347T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DBDIFF deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD01L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD01T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD02L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD02T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD03T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD04L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD04T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD06L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD06T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD07L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD07T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD09L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD20L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD25L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD26S deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD27S deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD28S deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD29L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD30L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD30T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD31S deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD32S deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD33S deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD35L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD36S deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD40L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD40T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DD42S deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DDTYPES deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DDTYPET deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF03T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF04L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF04T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF14L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF14T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF40D deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DF41S deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DIAPAR deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM02L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM02T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM03S deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM25L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM26L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM40L deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM40T deleted/truncated#20070402212624
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM41S deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM42S deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM42T deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM43T deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM45L deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM45T deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DM46S deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DOKCLU deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DOKHL deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DOKIL deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DSYST deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: DYNPSOURCE deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHCOMPCHILDCOMP deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHCOMPCHILDENH deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHCOMPHEADER deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHCONTRACTTOOL deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHCONTRACTTYP deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHHEADER deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHLOADINVAL deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHLOG deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHOBJ deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHOBJCONTRACT deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTCOMPCOMP deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTCOMPHEAD deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTCOMPSPOT deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTHEADER deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTOBJ deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTTOOLS deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHSPOTTOOLST deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHTOOLS deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENHTOOLST deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: ENLFDIR deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: EUDB deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: EUGUITEXT deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: EUOBJ deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: EUOBJEDIT deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: EUOBJT deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: FUNCT deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: FUPARAREF deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: IADB2 deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: IADB6 deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: IAINF deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: IAORA deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: IGDB2 deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: IGORA deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: LDBD deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: LDBH deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: LDBN deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: LDBNT deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: LDBQUAN deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: LDBT deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: MACID deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: MACOB deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: MCUSREXITS deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: MSSPROCS deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: MSSSOURCE deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: MSSSPVERS deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: MSSSTORAGE deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: NOTRA deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: PERMISSION deleted/truncated#20070402212625
    (BUF) ERROR: CsDecompr rc = -11
    (DB) INFO: disconnected from DB
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: job finished with 115 error(s)
    F:\usr\sap\CRP\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 20070402212625

Maybe you are looking for

  • Itunes 11.1.1.11 freezes when I try to sync 4s and ipad Windows 8

    I have recently update all my devices to os7 and now every time i connect any device (I phone 4s or Ipad 3rd gen) to my computer and try to change any setting itunes freezes and I have to force a shut down. Itunes acts normal until I connect a device

  • Hp laserjet 4500 color printer connection questions

    I've got a HP 4500 color laser printer which I bought in 2000.  Model # 4084A  Serial number jphcf07074.  I used it at my business on a network with a ethernet card connection.  The business is closed, and the ethernet card has died.  I am trying to

  • New update for Fios DVR

    I keep getting a pop-up on my DVR that there is a software update but I can't select anything to update it.  Any one else having this issue?

  • Problem in setting focus in JTable

    Hi, In my application I am using JTable with a customized table model. The table has two columns. First column has jcombobox as its editor and the second column has the customized editor developed by me. This particular table appears in a wizard. Whe

  • Table name where all CCMS values stored

    Hi, Can any one provide the table name where all CCMS values stored ( for all MTE classes) in the data base? Regards Soumitra