Logging/nologging

what is the usage of creating table with nologging, by default logging while creating table .
kindly temme the solution

Morgan, Please check the following:
a.     log_mode from v$database
b.     Is the database configured to be in force logging?
c.     Is the tablespace on which the table reside, configured to be in force logging?
In addition, here is the complete example (including ctas), using Tom Kyte mystats script:
SQL> create table nolog nologging as
  2  select cast(' ' as char(2000)) as str
  3  from dual connect by level <=1000;
Table created.
SQL> @c:\mystats "redo size"
NAME                                  VALUE
redo size                         8,662,356
SQL> create table yeslog logging as
  2  select cast(' ' as char(2000)) as str
  3  from dual connect by level <=1000;
Table created.
SQL> @c:\mystats2
NAME                                    V DIFF
redo size                        11466672        2,804,316Using the nologging in the ctas we avoided from generating a 2,804,316 of redo!
another one:
SQL> alter table nolog move;
Table altered.
SQL>  @c:\mystats "redo size"
NAME                                  VALUE
redo size                        11,530,252
SQL> alter table yeslog move;
Table altered.
SQL> @c:\mystats2
NAME                                    V DIFF
redo size                        14340152        2,809,900Using the nologging in the "alter table move" we avoided from generating a 2,809,900 of redo!
and here is another one:
SQL> create index nolog_a1 on nolog(str) nologging;
Index created.
SQL> @c:\mystats "redo size"
NAME                                  VALUE
redo size                        14,409,096
SQL> create index yeslog_a1 on yeslog(str) logging;
Index created.
SQL>  @c:\mystats2
NAME                                    V DIFF
redo size                        18141176        3,732,080and here is another one:
SQL> alter index nolog_a1 rebuild nologging;
Index altered.
SQL> @c:\mystats "redo size"
NAME                                  VALUE
redo size                        18,219,204
SQL> alter index yeslog_a1 rebuild logging;
Index altered.
SQL> @c:\mystats2
NAME                                    V DIFF
redo size                        21959552        3,740,348Don't forget to backup your objects, after all this nologging actions!
Amiel

Similar Messages

  • Archive log / nologging/ direct path insert

    Could you please confirm if following are true or correct me if my understanding is wrong:
    1 ) Archive log mode and LOGGING is needed to deal with media recovery; it was not needed for instance recovery.
    2) IF insert is in NO APPEND mode , redo is generated even if table is in nologging mode and database is in noachive log mode. This redo is needed for instance recovery.
    3) Direct path insert skips undo generation and may skip redo generation if the object is in nologging mode.
    Thanks.
    In case if it is relevant , I am using Oracle 11.2.0.3.

    1) Yes, Archive logs are needed for media recovery.
    2 and 3) Even if the table is in nologging mode , it generates little bit of redo for index maintenance and dictionary data. Upon a restart from a failure - Oracle will read the online redo logs and replay any transaction it finds in there. That is the "roll forward" bit. The binary redo information is used to replay everything that did not get written to the datafiles. This replay included regenerating the UNDO information (UNDO is protected by redo).
    After the redo has been applied, the database is typically available for use now - and the rollback phase begins. For any transaction that was being processed when the instance failed - we need to undo its changes, roll it back. We do that by processing the undo for all uncommitted transactions.
    The database is now fully recovered.
    Also read he following link
    http://docs.oracle.com/cd/B19306_01/server.102/b14220/startup.htm
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:5280714813869

  • LOGGING/NOLOGGING Clause

    I am running an insert statement, my insert statement selects 8 million rows from table B and inserts into table A
    insert into tableA (...)
    select ... from tableB
    I have altered both the tables to have NOLOGGING option.
    Do you think this is the right way to do or I should turn NOLOGGING on tableA and LOGGING on tableB
    Since it involves the insert and select of 8 millions I am converned about the performance and time it takes for the Insert to complete
    Any suggestions and inputs would help
    Thanks

    Nologging work only with specific operations.
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:485221567528
    http://asktom.oracle.com/pls/ask/f?p=4950:8:10968141687231771204::NO::F4950_P8_DISPLAYID,F4950_P8_CRITERIA:5280714813869
    In the am444's case, if table A is in nologging mode, he need use insert /*+ APPEND */ to not generate redo.
    Nicolas.
    Message was edited by:
    N. Gasparotto

  • Is imp logging/nologging aware ?

    Hi,
    I'm looking a way to reduce redo generation during import via imp utility in oracle 10g (imp because exp was done in 9i so no impdp allowed).
    And I wonder if setting table to NOLOGGING after importing with rows=n can reduce redo generation rate when
    doing second step which is imp ... GRANTS=n INDEXES=N ROWS=y CONSTRAINTS=n ANALYZE=n commit=y ignore=y buffer=8388608 recordlength=65535 ...
    Regards.
    Greg

    Please read Re: import with no logging option

  • Removing NOLOGGING and not explicitly designating LOGGING

    We have a table that was created similar to:
    create table aTableName
    ( col1 integer,
    colN
    ) tablespace someName nologging;
    Is there an alter command that will put the status of logging for the table the same as if it were created
    create table aTableName
    ( col1 integer,
    colN
    ) tablespace someName;
    Also, are there three states for logging:
    1. LOGGING
    2. NOLOGGING
    3. (undefined)
    I think I am asking to put logging in the third (undefined) state?

    Kent Waldrop wrote:
    Is there an alter command that will put the status of logging for the table the same as if it were createdNo. All you can do is explicitly set table to LOGGING or NOLOGGING:
    ALTER TABLE table_name [NO]LOGGING;
    Also, are there three states for logging:
    1. LOGGING
    2. NOLOGGING
    3. (undefined)
    No, there is only LOGGING or NOLOGGING. Just open docs and you will see that default value is LOGGING. So if you create table without specifying LOGGING/NOLOGGING table will be created with LOGGING:
    SQL> create table test_logging(x number)
      2  /
    Table created.
    SQL> select  logging
      2    from  user_tables
      3    where table_name = 'TEST_LOGGING'
      4  /
    LOG
    YES
    SQL> SY.

  • Logging option in materialized view

    Hi all,
    Anyone know about the meaning of "Logging option"(LOGGING, NOLOGGING) in Materialized view of node Snapshot in Oracle enterprise manager(Warehouse -->Summary management -->Materialized view(snapshot))
    Pls explain me.
    Thank you
    Mcka

    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/clauses005.htm#i999782

  • Materialized View with No Logging Option;;; THX

    Hi all,
    What's the diffrence between a :
    Materialized View with No Logging Option
    Materialized View with Logging Option
    thank you

    LOGGING|NOLOGGING specifies that subsequent Direct Loader (SQL*Loader) and direct-load INSERT operations against a nonpartitioned index, a range or hash index partition, or all partitions or subpartitions of a composite-partitioned index will be logged (LOGGING) or not logged (NOLOGGING) in the redo log file.
    In NOLOGGING mode, data is modified with minimal logging (to mark new extents invalid and to record dictionary changes). When applied during media recovery, the extent invalidation records mark a range of blocks as logically corrupt, because the redo data is not logged. Therefore, if you cannot afford to lose this index, you must take a backup after the operation in NOLOGGING mode.
    If the database is run in ARCHIVELOG mode, media recovery from a backup taken before an operation in LOGGING mode will re-create the index. However, media recovery from a backup taken before an operation in NOLOGGING mode will not re-create the index.
    An index segment can have logging attributes different from those of the base table and different from those of other index segments for the same base table.
    Message was edited by:
    HAGGAR

  • Disabling Log_Archive_Start in Archive Log Mode

    Guys,
    I have a Database running in Archive Log mode.
    I have a situation where in I have to do bunch of bulk updates for which I dont want any logs generated.
    sO I was thinking to set the intialization parameter log_archive_start to false before I run the DML updates
    ALTER SYSTEM SET log_archive_start = false
    after the DML is run I will turn it back on
    ALTER SYSTEM SET log_archive_start = True
    Do you think if this is the right to go about or would I have to switch from Archive Log Mode to No Archive Log Mode
    run the DML update and then switch back to Archive Log Mode
    Any comments/suggestions/inputs woo

    Hello,
    I would use some other way to get a full nologing behaviour.
    First, ensure your tablespace is in force logging mode.
    ALTER TABLESPACE data FORCE LOGGING NOLOGGING;
    ALTER TABLESPACE index FORCE LOGGING NOLOGGING;
    This will ensure that you're usually logging.
    Set all tables/indexes to be nologging
    BEGIN
    FOR vRes IN (SELECT OWNER,TABLE_NAME FROM DBA_TABLES WHERE TABLESPACE_NAME='data')
    LOOP
    EXECUTE IMMEDIATE 'ALTER TABLE ' || vRes.OWNER || '.' || vRes.TABLE_NAME ' NOLOGGING';
    END LOOP;
    END;
    Do even for indexes.
    From now on, when you want to do your huge amount of updates/... targetting objects in tablespaces data and index, jou just have to:
    ALTER TABLESPACE data NO FORCE LOGGING;
    ALTER TABLESPACE indexes NO FORCE LOGGING;
    - Your DML
    ALTER TABLESPACE data FORCE LOGGING;
    ALTER TABLESPACE indexes FORCE LOGGING.
    4 commands to disable logging for every object in the tablespace.
    Beware, when in NOLOGGING mode, you won't be able to "RECOVER" any of the tables. Thiis is not crash-friendly, but you'll have no redo info generated, which is what you require.
    Regards,
    Yoann.

  • LOGGING on materialized view

    Could anybody tell me a reason to have the materialized views on a production environment in LOGGING mode ?
    Thanks,
    P.

    I think you're maybe getting a bit confused between logging/nologging of a table, and a materialized view log, because there is no 'MV logging/nologging mode'.
    Any Oracle table can be nologging, which mean direct path inserts ONLY to these tables don't generate redo.
    A materialized view is implemented as a plain old Oracle table that represents the result of a query at a point in time. If you want to fast/incremental refresh a materialized view, you need to create materialized view log(s), which are implemented, again, as a plain old Oracle tables, that represent a set of changes to an underlying table.
    Both the base tables of MVs, and the tables containing MV logs can be nologging, but this will never have any benefit, because they are never subjected to direct path inserts.
    Question: Why generate redo for data that is duplicated elsewhere?
    Generic Answer: Because Oracle has build MV functionality onto existing, thoroughly tested, plain old Oracle tables.
    Better Answer: Because if you wanted to do a point in time recovery, would you rather just replay the redo, or replay the redo and rebuild every MV in your database? Maybe your MVs are very small, but there are database out there with MVs that take hours to rebuild.

  • Take advantage of NOLOGGING option

    I am using ODP.NET to insert several million rows of data every night. This is generating a lot of log switches, it switches about every 2 minutes.
    The database is in archivelog mode, but we have set the tables and indexes to NOLOGGING. However, there seems to be no change to the amount of logging generated. I am using the /*+ insert*/ hint, but that doesn't seem to help either.
    I am am using array binding to insert 500 records at a time, too.
    What can be done to make these inserts "direct inserts" so they do not generate logging??

    Hi Brian,
    The Oracle documentation is, in my opinion, misleading in regard to NOLOGGING and indexes. It has this to say:
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_5010.htm#sthref5118
    logging_clause
    Specify whether the creation of the index will be logged (LOGGING) or not logged
    (NOLOGGING) in the redo log file. This setting also determines whether
    subsequent Direct Loader (SQL*Loader) and direct-path INSERT operations
    against the index are logged or not logged. LOGGING is the default.The confusing part is "This setting also determines whether subsequent Direct Loader (SQL*Loader) and direct-path INSERT operations against the index are logged or not logged." which would lead you to believe that DML operations against the index are not logged when the index is NOLOGGING. That is not the case however (as you've found out!).
    Where I am, we do the drop, load, rebuild sequence. Primary key indexes or indexes used to enforce a unique constraint can't be dropped so you'd have to drop the constraint first then recreate it after loading.
    Not pretty, but since indexes can't really be "appended" it makes sense.
    Anyway, hope that is somewhat helpful and good luck,
    - Mark

  • Securefile Logging Confusion

    I'm trying to understand the recoverability implications of setting the LOGGING clause for Securefiles, but the documentation is not helping. The exact documentation from Oracle® Database SecureFiles and Large Objects Developer's Guide is below.
    "LOGGING/NOLOGGING/FILESYSTEM_LIKE_LOGGING
    Specify LOGGING if you want the creation of a database object, as well as subsequent inserts into the object, to be logged in the redo log file. LOGGING is the default.
    Specify NOLOGGING if you do not want these operations to be logged.
    For a non-partitioned object, the value specified for this clause is the actual physical attribute of the segment associated with the object. For partitioned objects, the value specified for this clause is the default physical attribute of the segments associated with all partitions specified in the CREATE statement (and in subsequent ALTER ... ADD PARTITION statements), unless you specify the logging attribute in the PARTITION description.
    FILESYSTEM_LIKE_LOGGING means that SecureFiles only log the metadata. This option is invalid for BasicFiles. This setting is similar to the metadata journaling of file systems, which reduces mean time to recovery from failures. The LOGGING setting for SecureFile LOBs is similar to the data journaling of file systems. Both the LOGGING and FILESYSTEM_LIKE_LOGGING settings provide a complete transactional file system by way of SecureFiles.
    For SecureFile LOBs, the NOLOGGING setting is converted internally to FILESYSTEM_LIKE_LOGGING.
    FILESYSTEM_LIKE_LOGGING ensures that data is completely recoverable after a server failure.
    Note:
    For LOB segments, with the NOLOGGING and FILESYSTEM_LIKE_LOGGING settings it is possible for data to be changed on disk during a backup operation, resulting in read inconsistency. To avoid this situation, ensure that changes to LOB segments are saved in the redo log file by setting LOGGING for LOB storage."
    Is Filesystem_like_logging a recoverable operation? (The 4th paragraph says it reduces mean time to recover, but the last Note implies that Securefiles are essentially NOLOGGING, which is also implied by the 5th paragraph…but the 6th paragraph says that the data is completely recoverable).

    I've been thinking about this a bit too. Here's what I think happens.
    If you have LOGGING set, everything goes to redo, everything is fully recoverable. No problem.
    If you have NOLOGGING set, in the event of recovery, there's no data in the redo, so, those blocks will get ORA-26040 "data block was loaded using the NOLOGGING option". The only way to fix this type of corruption is to truncate the segment, and reload.
    That much, I think I'm clear on. This new FILESYSTEM_LIKE_LOGGING option, is where I'm a bit foggy. I'm speculating that FILESYSTEM_LIKE_LOGGING means that the metadata is written to redo after the LOB data is written to the securefiles area. So, the metadata is logged, i.e. "the lob data is over here in this securefiles area". But, the LOB itself is not logged. So, if there's a failure, and you do recovery, clean up is a bit simpler, in that you can identify LOBs that are "missing" and selectively delete them, rather than having to resort to truncation of the entire segment.
    This seems to be supported by the 11gR1 Concepts manual:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28318/intro.htm#CNCPT1918
    which has this to say:
    "File System-like Logging: Modern file systems have the ability to keep a running log of the file system metadata. Putting this metadata into a running log (called a journal) that is flushed in a lazy fashion increases performance and removes the need for file system checking operations like fsck. SecureFiles' file system-like logging provides this same high performance journaling. File system-like logging also allows for +soft corruptions+, so that if an error is found on a block, SecureFiles returns a block with the LOB fill character. This allows the application to detect the error by seeing known invalid data and to recover either through deletion of the LOB (something that is not possible with the original implementation of LOBs) or by other means."
    Finally, the 11gR2 Securfiles and Large Objects Developer's Guide:
    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e10645/adlob_tables.htm#ADLOB45293
    Seems to suggest that doing bulk loads w/ FILESYSTEM_LIKE_LOGGING is a good idea.
    That brings me to another thought, though. Clearly, NOLOGGING is for direct load only. What about FILESYSTEM_LIKE_LOGGING? Is that only going to work for direct load? Or any type of DML?
    So, I think I understand it, sort of... :-) Clearly, this feature needs more documentation and explanation.
    I need to play around a bit more, maybe set up a test case or two, before I'll be convinced I understand how it works....
    Hope that helps,
    -Mark

  • SAP ECC error:'Migration Monitor' exits with error code 103.

    Hi All,
    I am doing SAP ECC installation for windows 32 bit with MAXDB as backend.
    I am stuck at the import ABAP.Getting error
    ERROR 2008-08-08 16:10:53
    CJS-30022  Program 'Migration Monitor' exits with error code 103. For details see log file(s) import_monitor.java.log, import_monitor.log.
    1) imort_monitor.java.log-->contains
    java version "1.4.2_12"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_12-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_12-b03, mixed mode)
    Import Monitor jobs: running 1, waiting 0, completed 18, failed 0, total 19.
    Loading of 'SAPVIEW' import package: ERROR
    Import Monitor jobs: running 0, waiting 0, completed 18, failed 1, total 19.
    2)import_monitor.log
    ERROR: 2008-08-08 16:10:36 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPVIEW' import package is interrupted with R3load error.
    Process 'D:\usr\sap\EC6\SYS\exe\uc\NTI386\R3load.exe -i SAPVIEW.cmd -dbcodepage 4103 -l SAPVIEW.log -nolog -c 0' exited with return code 2.
    For mode details see 'SAPVIEW.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
    INFO: 2008-08-08 16:10:52
    All import packages are processed.
    WARNING: 2008-08-08 16:10:52
    1 error(s) during processing of packages.
    INFO: 2008-08-08 16:10:52
    Import Monitor is stopped.
    3)SAPVIEW.log
      error message returned by DbSl:
    (IMP) INFO: a failed DROP attempt is not necessarily a problem
    (DB) ERROR: DDL statement failed
    (CREATE VIEW "Z_T_CO_BW" ( "KOKRS" , "KOSTL" , "VERSN" , "KSTAR" , "WOG001" , "MEG001"  ) AS SELECT T0002."KOKRS", T0002."KOSTL", T0001."VERSN", T0001."KSTAR", T0001."WOG001",  T0001."MEG001" FROM "COSS" T0001, "CSKS" T0002 WHERE T0002."MANDT" = T0001."MANDT")
    DbSlExecute: rc = 103
      (SQL error -942)
      error message returned by DbSl:
    (DB) INFO: disconnected from DB
    D:\usr\sap\EC6\SYS\exe\uc\NTI386\R3load.exe: job finished with 3108 error(s)
    D:\usr\sap\EC6\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 20080808174211
    Only SAPDB: SAPSID srvice of SAP DB is only up.
    No other services of database are  up.And i am not able to up the other services also.
    Is it required to up the other services?
    If not?
    Why this error is occuring?
    Any help will be appreciated.
    Thanks&Regards
    Manisha das

    Hello Manisha,
    The one of the possible reasons for this is due to lack of H/W.
    Increase your RAM size to atleast 2GB and utilise the same while you are installing ECC in database parameters step..
    If the issue is with H/W, then this should fix the issue.
    Hope it helps,
    Regards,
    Satish.

  • JBoss Can't find Oracle Driver

    Hello, everyone,
    I'm hoping someone can help me.
    I've created a small web service. I have one method which returns something very straight forward, and it works fine.
    I have then progressed this to try to return some data from an Oracle table.
    However, when I try to do this, I get an error back saying that the Oracle Driver can not be found.
    I am using JBoss, and am running this in Eclipse's Web Service Explorer.
    The things I have tried to solve the issue are:
    - Ensuring the Oracle driver is located in Windows>Preferences>General>Data Management>Connectivity>Driver Definitions
    - Placing the Oracle driver jar in as many lib folders in my JBoss directory on my C drive as possible (I may have missed some out).
    I am not sure what else to try. Please can someone help me or point me in the right direction?
    Any help would be hugely appreciated.
    Thank you very much in advance.
    Robin
    My stacktrace is as follows:
    [code]
    java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver from BaseClassLoader@1652e61{VFSClassLoaderPolicy@1c7eb33{name=vfsfile:/C:/Jboss/jboss-5.0.0.GA/server/default/conf/jboss-service.xml domain=ClassLoaderDomain@9fe84e{name=DefaultDomain parentPolicy=BEFORE parent=org.jboss.system.NoAnnotationURLClassLoader@a97b0b} roots=[MemoryContextHandler@2254409[path= context=vfsmemory://4shc4f-nlo6vf-hjk3qb83-1-hjk3qewj-6 real=vfsmemory://4shc4f-nlo6vf-hjk3qb83-1-hjk3qewj-6], DelegatingHandler@6903079[path=antlr.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/antlr.jar], DelegatingHandler@22387624[path=autonumber-plugin.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/autonumber-plugin.jar], DelegatingHandler@22963857[path=bcel.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/bcel.jar], DelegatingHandler@10479206[path=bsf.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/bsf.jar], DelegatingHandler@30371681[path=bsh.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/bsh.jar], DelegatingHandler@26839239[path=commons-collections.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/commons-collections.jar], DelegatingHandler@14875150[path=commons-httpclient.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/commons-httpclient.jar], DelegatingHandler@26137220[path=commons-logging.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/commons-logging.jar], DelegatingHandler@27193209[path=dtdparser121.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/dtdparser121.jar], DelegatingHandler@24916054[path=edb-jdbc14.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/edb-jdbc14.jar], DelegatingHandler@4824957[path=ejb3-persistence.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ejb3-persistence.jar], DelegatingHandler@25551189[path=el-api.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/el-api.jar], DelegatingHandler@9229531[path=hibernate-annotations.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/hibernate-annotations.jar], DelegatingHandler@32148925[path=hibernate-commons-annotations.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/hibernate-commons-annotations.jar], DelegatingHandler@33522601[path=hibernate-core.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/hibernate-core.jar], DelegatingHandler@1899900[path=hibernate-entitymanager.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/hibernate-entitymanager.jar], DelegatingHandler@21354482[path=hibernate-jmx.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/hibernate-jmx.jar], DelegatingHandler@6588912[path=hibernate-validator.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/hibernate-validator.jar], DelegatingHandler@10229202[path=hsqldb-plugin.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/hsqldb-plugin.jar], DelegatingHandler@22852149[path=hsqldb.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/hsqldb.jar], DelegatingHandler@12046052[path=ibatis-2.3.4.726.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ibatis-2.3.4.726.jar], DelegatingHandler@24115680[path=jaxen.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jaxen.jar], DelegatingHandler@8259012[path=jboss-bindingservice.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-bindingservice.jar], DelegatingHandler@28085047[path=jboss-common-jdbc-wrapper.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-common-jdbc-wrapper.jar], DelegatingHandler@15191255[path=jboss-current-invocation-aspects.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-current-invocation-aspects.jar], DelegatingHandler@3753755[path=jboss-ejb3-cache.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-cache.jar], DelegatingHandler@7028679[path=jboss-ejb3-common.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-common.jar], DelegatingHandler@19417347[path=jboss-ejb3-core.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-core.jar], DelegatingHandler@30502607[path=jboss-ejb3-deployers.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-deployers.jar], DelegatingHandler@12704779[path=jboss-ejb3-ext-api-impl.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-ext-api-impl.jar], DelegatingHandler@22379127[path=jboss-ejb3-ext-api.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-ext-api.jar], DelegatingHandler@14371981[path=jboss-ejb3-interceptors.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-interceptors.jar], DelegatingHandler@25089808[path=jboss-ejb3-metadata.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-metadata.jar], DelegatingHandler@5868125[path=jboss-ejb3-proxy-clustered.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-proxy-clustered.jar], DelegatingHandler@9114403[path=jboss-ejb3-proxy.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-proxy.jar], DelegatingHandler@9795777[path=jboss-ejb3-security.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-security.jar], DelegatingHandler@19590177[path=jboss-ejb3-transactions.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ejb3-transactions.jar], DelegatingHandler@16028187[path=jboss-ha-client.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ha-client.jar], DelegatingHandler@10766816[path=jboss-ha-server-api.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ha-server-api.jar], DelegatingHandler@32391332[path=jboss-ha-server-cache-jbc.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ha-server-cache-jbc.jar], DelegatingHandler@14017136[path=jboss-ha-server-cache-spi.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-ha-server-cache-spi.jar], DelegatingHandler@345667[path=jboss-hibernate.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-hibernate.jar], DelegatingHandler@4725080[path=jboss-iiop.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-iiop.jar], DelegatingHandler@24635060[path=jboss-integration.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-integration.jar], DelegatingHandler@13327669[path=jboss-jaspi-api.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-jaspi-api.jar], DelegatingHandler@22302276[path=jboss-javaee.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-javaee.jar], DelegatingHandler@31347466[path=jboss-jca.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-jca.jar], DelegatingHandler@18733404[path=jboss-jmx-remoting.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-jmx-remoting.jar], DelegatingHandler@11086506[path=jboss-jpa-deployers.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-jpa-deployers.jar], DelegatingHandler@3152885[path=jboss-jsr77.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-jsr77.jar], DelegatingHandler@8104009[path=jboss-jsr88.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-jsr88.jar], DelegatingHandler@6656120[path=jboss-management.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-management.jar], DelegatingHandler@32490450[path=jboss-messaging-int.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-messaging-int.jar], DelegatingHandler@2167036[path=jboss-messaging.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-messaging.jar], DelegatingHandler@14820075[path=jboss-metadata.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-metadata.jar], DelegatingHandler@6467398[path=jboss-monitoring.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-monitoring.jar], DelegatingHandler@14768745[path=jboss-profileservice.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-profileservice.jar], DelegatingHandler@16166715[path=jboss-remoting-aspects.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-remoting-aspects.jar], DelegatingHandler@23747954[path=jboss-remoting.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-remoting.jar], DelegatingHandler@1902564[path=jboss-security-aspects.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-security-aspects.jar], DelegatingHandler@32586504[path=jboss-security-spi.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-security-spi.jar], DelegatingHandler@5935979[path=jboss-serialization.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-serialization.jar], DelegatingHandler@8687994[path=jboss-srp.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-srp.jar], DelegatingHandler@23794987[path=jboss-sunxacml.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-sunxacml.jar], DelegatingHandler@20627169[path=jboss-transaction-aspects.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-transaction-aspects.jar], DelegatingHandler@30003582[path=jboss-xacml.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss-xacml.jar], DelegatingHandler@14199075[path=jboss.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jboss.jar], DelegatingHandler@4740342[path=jbossas-remoting.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossas-remoting.jar], DelegatingHandler@12716179[path=jbossha.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossha.jar], DelegatingHandler@12653911[path=jbossjta-integration.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossjta-integration.jar], DelegatingHandler@6300663[path=jbossjta.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossjta.jar], DelegatingHandler@31019059[path=jbosssx-server.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbosssx-server.jar], DelegatingHandler@2115134[path=jbosssx.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbosssx.jar], DelegatingHandler@14919969[path=jbossts-common.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossts-common.jar], DelegatingHandler@7651652[path=jbossws-common.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossws-common.jar], DelegatingHandler@20739678[path=jbossws-framework.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossws-framework.jar], DelegatingHandler@8331318[path=jbossws-native-jaxrpc.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossws-native-jaxrpc.jar], DelegatingHandler@1823783[path=jbossws-native-jaxws-ext.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossws-native-jaxws-ext.jar], DelegatingHandler@17125267[path=jbossws-native-jaxws.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossws-native-jaxws.jar], DelegatingHandler@28000914[path=jbossws-native-saaj.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossws-native-saaj.jar], DelegatingHandler@10464309[path=jbossws-spi.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jbossws-spi.jar], DelegatingHandler@14869110[path=jmx-adaptor-plugin.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jmx-adaptor-plugin.jar], DelegatingHandler@25281771[path=jnpserver.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jnpserver.jar], DelegatingHandler@10968735[path=joesnmp.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/joesnmp.jar], DelegatingHandler@3486913[path=jsp-api.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/jsp-api.jar], DelegatingHandler@18513535[path=log4j-snmp-appender.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/log4j-snmp-appender.jar], DelegatingHandler@6749397[path=log4j.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/log4j.jar], DelegatingHandler@23142099[path=mail-plugin.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/mail-plugin.jar], DelegatingHandler@19847791[path=mail.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/mail.jar], DelegatingHandler@17226797[path=properties-plugin.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/properties-plugin.jar], DelegatingHandler@23150623[path=quartz.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/quartz.jar], DelegatingHandler@28882952[path=scheduler-plugin-example.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/scheduler-plugin-example.jar], DelegatingHandler@3816987[path=scheduler-plugin.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/scheduler-plugin.jar], DelegatingHandler@29594642[path=servlet-api.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/servlet-api.jar], DelegatingHandler@19811980[path=slf4j-api.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/slf4j-api.jar], DelegatingHandler@19335035[path=slf4j-jboss-logging.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/slf4j-jboss-logging.jar]] delegates=null exported=[, org.hibernate.loader.collection, org.jboss.deployers.spi.management.deploy, org.jboss.remoting.transporter, org.jboss.ejb3.proxy.clustered.objectfactory.session.stateful, com.arjuna.ats.txoj.semaphore, org.jboss.varia.property, com.arjuna.common.util.propertyservice, com.arjuna.common.util.logging, org.jboss.jms.server.messagecounter, org.jboss.ejb3.proxy.invocation, org.jboss.remoting.invocation, org.jboss.remoting.samples.transporter.proxy, javax.persistence, org.hibernate.engine.loading, org.jboss.security.xacml.sunxacml.combine, org.jboss.jms.client.remoting, com.arjuna.ats.internal.txoj.recovery, org.jboss.remoting.samples.transporter.serialization.server, javax.xml.registry.infomodel, org.jboss.resource.adapter.jdbc.remote, org.jboss.resource.spi.timer, org.jboss.ha.cachemanager, org.jboss.web.tomcat.service.session.distributedcache.spi, org.jboss.ejb3.timerservice, org.jboss.wsf.test, org.jboss.ejb3.cluster.metadata, org.jboss.metadata.annotation.creator.client, org.jboss.resource.statistic.formatter, com.arjuna.ats.internal.jta.transaction.arjunacore, org.jboss.ejb3.proxy.handler.stateless, com.edb.util, org.jboss.security.mapping.providers.principal, org.jboss.hibernate.deployers.metadata, org.jboss.wsf.common.management, org.jboss.resource.metadata, javax.enterprise.deploy.spi, com.ibatis.common.logging.log4j, org.apache.log4j.lf5, org.jboss.remoting.detection.jndi, org.jboss.security.integration, com.arjuna.common.internal.util.logging.simpleLog, org.jboss.jms.server.remoting, org.jboss.ejb3.metadata, org.hibernate.cache.access, META-INF.maven.org.jboss.cluster.jboss-ha-server-api, org.jboss.remoting.samples.transporter.basic, org.apache.bsf.util, org.jboss.ejb3.proxy.handler.session.service, org.hibernate.intercept.cglib, org.jboss.remoting.transport.sslrmi, org.hibernate.proxy, org.apache.bcel.verifier.exc, org.jboss.remoting.stream, org.apache.log4j.varia, org.hibernate.cache, org.jboss.jmx.adaptor.rmi, org.jboss.security.auth.container.config, org.jboss.ejb3.timerservice.jboss, org.hibernate.usertype, javax.security.auth.message.module, org.jboss.management.j2ee.statistics, org.jboss.remoting, org.jboss.serial.util, org.jboss.security.acl.config, com.ibatis.sqlmap.engine.mapping.sql.dynamic.elements, org.jboss.resource.adapter.jdbc.vendor, META-INF.maven.org.jboss.ws.native.jbossws-native-saaj, org.jboss.resource.adapter.jdbc, org.hibernate.ejb.event, org.jboss.metadata.validation.chain.ejb.jboss, com.arjuna.ats.jta.utils, javax.servlet, org.jboss.monitor.alerts, org.hibernate.annotations, org.jboss.jms.wireformat, com.arjuna.ats.internal.arjuna.objectstore.jdbc, antlr.debug.misc, org.jboss.security.xacml.jaxb, org.jboss.ejb3.deployers, com.edb.ds, org.hibernate.hql.ast.exec, com.ibatis.common.jdbc, org.jboss.metadata.process.processor, org.jboss.wsf.spi.util, org.hibernate.context, org.jboss.remoting.samples.detection.multicast, org.jboss.jmx.connector.invoker, javax.enterprise.deploy.model, org.jboss.web.tomcat.service.session.distributedcache.impl.jbc, xmdesc, org.jboss.ejb3.interceptors.container, org.jboss.ejb3.proxy.objectfactory.session, org.jboss.remoting.transport.web, org.hibernate.id.enhanced, javax.enterprise.deploy.shared, org.jboss.metadata.common.jboss, org.jboss.ejb3.enc, org.jboss.ejb3.proxy.factory, org.jboss.remoting.samples.callback.statistics, com.arjuna.ats.jta.xa, org.jboss.proxy.ejb.handle, org.jboss.ejb3.proxy.clustered.factory.session.stateful, org.jboss.metadata.serviceref, javax.mail.event, org.apache.bsf.engines.xslt, org.jaxen.pattern, org.jboss.ha.client.loadbalance, org.apache.log4j.lf5.viewer, org.jboss.ejb.plugins.cmp.jdbc, org.jboss.metadata.annotation.finder, org.jboss.jms.server.security, org.jboss.aspects.currentinvocation, org.jboss.wsf.framework.serviceref, org.jboss.web.tomcat.service.session.distributedcache.impl, org.jboss.ejb3.dependency, com.arjuna.ats.jbossatx.jta, org.jboss.iiop.jacorb, org.apache.bcel.generic, org.slf4j.helpers, org.quartz.plugins.xml, com.arjuna.ats.txoj.lockstore, com.edb.core.v2, org.jboss.ejb3.proxy.objectstore, com.sun.mail.handlers, com.ibatis.sqlmap.engine.transaction.user, org.jboss.remoting.serialization.impl.java, org.jboss.metadata.jpa.spec, com.edb.core.v3, org.hibernate.intercept.javassist, org.jboss.injection.lang.reflect, org.jboss.ejb3.protocol.jarjar, org.jboss.remoting.transport.servlet, com.arjuna.ats.internal.jta.xa, com.edb.fastpath, org.jboss.ha.client.loadbalance.aop, org.hibernate.stat, javax.xml.ws, org.jboss.invocation.iiop, com.arjuna.ats.tsmx.mbeans, com.ibatis.sqlmap.engine.impl, org.jboss.varia.autonumber, org.jboss.deployers.spi.management, org.quartz.simpl, com.edb.largeobject, org.jboss.security.plugins.acl, org.jboss.deployment.services, org.jboss.profileservice.management, org.quartz.jobs, javax.xml.rpc.handler.soap, org.hibernate.impl, com.arjuna.ats.internal.arjuna.gandiva.nameservice, org.hibernate.event.def, org.jboss.remoting.samples.multiplex, org.hibernate.persister, org.hibernate.ejb.transaction, org.hibernate.validator.resources, org.jboss.ejb3.proxy.clustered.handler.session.stateful, org.jboss.remoting.marshal.serializable, org.jboss.remoting.samples.transporter.complex.server, org.jboss.security.mapping.providers, org.jboss.wsf.framework.management.recording, org.jboss.messaging.core.impl.jchannelfactory, org.jnp.interfaces, org.jboss.verifier, javax.xml.rpc, org.apache.commons.httpclient.methods, org.opennms.protocols.snmp.asn1, org.jboss.ejb3.interceptors.currentinvocation, org.hibernate.tool.instrument.cglib, org.jboss.client, org.hibernate.annotations.common.reflection.java, bsh.util.lib, com.edb.translation, org.jboss.remoting.samples.transporter.multiple.client, org.jboss.ha.hasessionstate.server, org.jboss.security.xacml.interfaces, com.ibatis.sqlmap.engine.transaction.jdbc, org.jboss.iiop.test, org.quartz.core, org.jboss.ejb.plugins.cmp.jdbc2.schema, org.jboss.ejb3.interceptors.proxy, META-INF.maven.org.jboss.jpa.jboss-jpa-deployers, com.arjuna.ats.txoj.logging, com.arjuna.ats.internal.arjuna.template, org.jboss.metadata.ejb.spec, org.hibernate.type, com.arjuna.ats.arjuna.gandiva.inventory, javax.xml.ws.http, com.arjuna.ats.jbossatx.logging, org.jboss.verifier.strategy, org.apache.commons.httpclient.protocol, com.ibatis.sqlmap.engine.mapping.sql.raw, org.jboss.remoting.samples.transporter.custom.server, org.apache.bsf.util.event.adapters, org.apache.log4j.lf5.viewer.images, org.apache.commons.collections.set, org.hibernate.loader, org.jboss.jms.delegate, org.jboss.services.binding, org.hibernate.engine, org.quartz.spi, META-INF.maven.org.jboss.ws.jbossws-common, org.jboss.security.propertyeditor, org.jboss.ha.framework.server.util, META-INF.maven.org.jboss.security.jboss-sunxacml, org.jboss.mail, org.jboss.remoting.detection.util, org.jboss.ejb, org.jboss.wsf.spi.metadata.j2ee.serviceref, com.arjuna.ats.jdbc, org.jboss.ha.jndi.spi, org.hsqldb.jdbc, org.jboss.serial.objectmetamodel, com.arjuna.ats.internal.jta.transaction.arjunacore.subordinate.jca, META-INF.maven.org.hibernate.hibernate-core, javax.mail.util, org.apache.log4j.nt, org.jboss.security.srp, com.arjuna.ats.internal.txoj.semaphore, com.arjuna.common.internal.util.propertyservice.plugins.io, com.arjuna.ats.internal.jbossatx.jta.jca, org.jboss.security.xacml.locators, org.hibernate.tuple, org.jboss.remoting.transport.rmi, org.hibernate.annotations.common.reflection, org.jboss.web, bsh.reflect, org.hibernate.classic, org.hibernate.ejb.connection, org.jboss.security.xacml.util, org.jboss.security.ssl, org.jboss.ejb3.mdb, javax.transaction.xa, org.hsqldb, org.apache.bsf.engines.netrexx, com.arjuna.ats.jta.common, org.hibernate.jdbc.util, javax.security.auth.message.config, com.ibatis.sqlmap.engine.cache.oscache, com.wutka.dtd, org.jboss.jms.server.connectormanager, org.jboss.wsf.spi.transport, org.jboss.metadata.process.processor.ejb.jboss, org.omg.stub.javax.ejb, org.jboss.jpa.tx, org.hibernate.loader.entity, org.jboss.remoting.samples.oneway, org.jboss.messaging.core.impl.clusterconnection, org.jboss.wsf.spi.deployment, org.jboss.ejb3.interceptors.direct, antlr.collections.impl, org.apache.log4j.or, org.hibernate, javax.xml.rpc.soap, com.ibatis.sqlmap.engine.mapping.result, com.ibatis.common.logging.nologging, com.arjuna.ats.internal.tsmx.agent.exceptions, org.jboss.ha.jndi, org.hsqldb.sample, org.hibernate.bytecode.util, org.hsqldb.lib, com.arjuna.ats.txoj.exceptions, org.jboss.ejb3.metamodel, org.apache.log4j.or.jms, javax.management.remote.rmi, META-INF.maven.org.jboss.ws.native.jbossws-native-jaxws-ext, javax.interceptor, org.jboss.wsf.spi.tools.ant, security, org.jboss.resource.timer, com.arjuna.ats.tsmx.agent.exceptions, org.jboss.ejb3.proxy.objectfactory.session.stateless, com.arjuna.ats.jta.transaction, org.jboss.ejb3.metadata.plugins.loader, org.jboss.deployment.vfs, com.arjuna.ats.internal.jta.recovery.arjunacore, org.jaxen, com.ibatis.sqlmap.engine.execution, com.ibatis.sqlmap.engine.cache.memory, com.arjuna.ats.jta.resources, org.jboss.wsf.common.logging, com.arjuna.ats.arjuna.utils, org.jboss.ejb3.aop, META-INF.maven.org.jboss.ejb3.jboss-ejb3-security, org.jboss.jms.client.delegate, bsh.commands, com.arjuna.ats.tsmx.agent, org.jboss.security.xacml.sunxacml.support, org.jboss.serial.finalcontainers, com.arjuna.ats.internal.txoj.lockstore, org.jboss.resource.security, org.jboss.messaging.core.impl.tx, org.jboss.resource.connectionmanager, javax.xml.ws.addressing.soap, org.quartz.impl.calendar, com.arjuna.ats.internal.jdbc.drivers, org.jboss.deployment.dependency, org.jboss.security.identity.fed, org.jboss.ejb3.kernel, com.edb.ds.common, META-INF.maven.org.jboss.ejb3.jboss-ejb3-proxy-clustered, org.jboss.wsf.framework, com.arjuna.ats.arjuna.coordinator, org.jboss.services.binding.impl, org.jboss.invocation, javax.servlet.http, com.arjuna.common.internal.util.licence.utils, org.jboss.metadata.validation, javax.jws, org.hibernate.bytecode, org.jboss.jms.exception, org.jboss.security.mapping, org.apache.log4j.spi, org.jboss.ejb3.interceptors.lang, com.arjuna.ats.arjuna.gandiva.nameservice, org.jboss.security.xacml.sunxacml.ctx, org.jboss.ejb3.naming, org.jboss.messaging.core.impl, org.jboss.jpa.resolvers, org.jboss.remoting.samples.transporter.clustered.server, org.hsqldb.util.sqltool, org.jboss.hibernate.deployers, org.jboss.ejb.plugins.local, org.jboss.monitor, org.jboss.remoting.samples.transporter.proxy.client, org.hibernate.cache.entry, org.quartz, org.hibernate.hql, org.jboss.security.auth.spi, com.arjuna.common.util, org.hibernate.transform, org.hibernate.tuple.component, org.jboss.ejb3.cache.persistence, org.jboss.invocation.pooled.server, org.jboss.security.identitytrust.modules, org.jboss.metadata.common.spi, com.arjuna.ats.internal.jta.utils, org.jboss.security.authorization.modules, org.jboss.verifier.event, org.jboss.iiop.rmi.marshal, org.jboss.ejb3.proxy.clustered.registry, org.apache.log4j.jdbc, com.arjuna.ats.internal.jta.resources.errorhandlers, org.jboss.ejb3.proxy.clustered.familyname, org.apache.bcel.util, org.jboss.annotation.javaee, org.jboss.ejb3.metadata.annotation, org.hibernate.sql, org.jboss.messaging.util, org.jboss.ejb.plugins.cmp.jdbc.metadata, com.arjuna.common.util.propertyservice.propertycontainer, org.jboss.invocation.http.server, org.hsqldb.persist, org.jboss.remoting.transport.sslsocket, com.arjuna.ats.arjuna.state, org.jboss.ejb3.interceptors.aop, org.hibernate.lob, org.jboss.ejb3.security.helpers, org.jboss.wsf.spi.management, org.jboss.remoting.detection.multicast, org.jboss.security.authorization.modules.web, antlr.build, org.hibernate.persister.entity, com.edb.stream, org.jboss.classloading.spi, org.jboss.metadata.rar.jboss, org.jboss.jpa.injection, org.apache.bsf.engines.jacl, org.jboss.mx.remoting.event, org.jboss.ejb3.proxy.jndiregistrar, META-INF.maven.org.jboss.ejb3.jboss-ejb3-ext-api, org.jboss.jca.spi, org.jboss.remoting.samples.bisocket, org.apache.log4j.lf5.viewer.configure, org.jboss.ejb3.common.registrar.spi, org.jboss.ejb3.security.embedded.plugins, org.jboss.crypto.digest, org.jboss.naming.java, org.jboss.security.xacml.sunxacml, org.jboss.remoting.samples.transporter.complex, META-INF.maven.org.jboss.ejb3.jboss-ejb3-ext-api-impl, com.arjuna.ats.arjuna.thread, org.apache.commons.collections.map, javax.xml.rpc.holders, org.jboss.jms.server.plugin.contract, org.jboss.ejb3.interceptors.registry, org.jboss.tm.usertx.client, com.arjuna.ats.txoj, org.hibernate.cfg.search, org.jboss.remoting.transport.bisocket, org.jboss.resource.binding.remote, org.jboss.wsf.framework.transport, org.jboss.ejb3.injection, com.arjuna.ats.txoj.common, org.jboss.wsf.spi.serviceref, com.ibatis.sqlmap.client.extensions, com.ibatis.sqlmap.engine.cache.fifo, javax.security.jacc, META-INF.maven.org.jboss.ws.native.jbossws-native-jaxrpc, org.jboss.wsf.common.utils, org.jboss.jms.server.bridge, com.arjuna.ats.internal.arjuna, javax.enterprise.deploy.spi.exceptions, org.quartz.xml, org.jboss.management.j2ee, org.jboss.deployment.spi.configurations, bsh.servlet, org.jboss.aspects.tx, org.apache.commons.collections.iterators, org.jboss.serial.io, com.ibatis.sqlmap.engine.accessplan, com.edb.core.charset, org.hibernate.cfg.annotations.reflection, org.hibernate.id, org.jboss.ejb3.proxy.handler.session, org.jboss.ejb3.common.thread, com.arjuna.common, org.jboss.jpa.util, org.jboss.deployment, javax.ejb.spi, bsh.collection, org.jboss.metamodel.descriptor, org.jboss.profileservice.management.upload, org.jboss.invocation.local, META-INF.maven.org.slf4j.slf4j-api, org.jaxen.function, META-INF.maven.org.jboss.cluster.jboss-ha-client, org.jboss.security.microcontainer.beans.metadata, com.arjuna.ats.arjuna.objectstore.jdbc, org.jboss.remoting.samples.multiplex.invoker, org.jaxen.javabean, org.jboss.ejb3.tx.container, org.jboss.lang.ref, org.hsqldb.resources, org.jboss.security.xacml.sunxacml.finder.impl, org.jboss.ejb3.common.spi, com.edb, org.jboss.metadata.process.chain.ejb.jboss, org.jboss.security.xacml.sunxacml.support.finder, org.jboss.jms.server.container, org.jboss.profileservice.management.templates, org.apache.bsf.util.cf, org.quartz.utils, org.jboss.ha.framework.test, org.hibernate.validator.event, javax.security.auth.message.callback, org.jboss.ejb3.common.lang, org.hsqldb.lib.java, org.jboss.ejb3.proxy.intf, org.jboss.iiop.naming, org.jboss.security.xacml.bridge, org.jboss.remoting.samples.chat, org.jnp.server, org.hsqldb.scriptio, org.apache.commons.httpclient.methods.multipart, org.jboss.ejb3.proxy.factory.stateful, org.jboss.metadata.client.spec, org.w3c.dom, com.arjuna.ats.tsmx.common, org.jaxen.function.ext, javax.management.remote, com.arjuna.ats.internal.jbossatx.jta, org.jboss.ejb3.security.annotation, org.jnp.interfaces.java, org.jboss.ejb3.entity.hibernate, bsh, org.apache.log4j.lf5.util, org.quartz.plugins.management, org.jaxen.saxpath.helpers, org.jboss.metadata.annotation.creator.ws, org.jboss.remoting.samples.transporter.proxy.server, javax.jms, org.jboss.ejb3.util, antlr.actions.python, org.hibernate.loader.custom, stylesheets, org.jnp.client, javax.jws.soap, org.jboss.profileservice.management.upload.remoting, org.jboss.ejb3.common.string, org.hibernate.engine.query.sql, org.jboss.ejb3.metadata.spi.signature, org.jboss.metadata.validation.validator.ejb.jboss, org.jboss.ejb3.javaee, javax.resource.spi, org.hibernate.persister.collection, org.hibernate.hql.ast.tree, org.jboss.remoting.samples.simple, org.jboss.remoting.serialization, org.jboss.profileservice.management.matchers, org.jaxen.expr.iter, org.jboss.remoting.transport.servlet.web, org.jboss.ha.singleton.examples, org.jboss.ejb3.proxy.clustered.objectstore, org.jboss.ejb3.proxy.objectfactory.session.stateful, org.jboss.jms.client.plugin, org.jboss.remoting.samples.chat.utility, org.jboss.remoting.transport.sslservlet, org.jboss.security.plugins.audit, org.jboss.ejb3.proxy, org.hibernate.hql.antlr, org.jboss.security.identitytrust, org.jboss.ejb3.interceptors.annotation, org.jboss.deployment.spi.status, org.hibernate.proxy.pojo.javassist, org.jboss.remoting.loading, javax.resource.spi.work, com.arjuna.common.util.exceptions, org.jboss.security.jndi, org.apache.commons.collections.bidimap, org.jboss.ejb.plugins.lock, com.ibatis.sqlmap.engine.datasource, META-INF.maven.org.jboss.aspects.jboss-remoting-aspects, org.jboss.aspects.remoting.interceptors.invoker, org.apache.bcel.verifier.structurals, org.jboss.remoting.samples.transporter.multiple, org.quartz.helpers, org.jboss.varia.scheduler.example, com.arjuna.ats.jdbc.common, org.jboss.mx.remoting.provider.iiop, org.jboss.crypto, org.apache.bsf, com.ibatis.sqlmap.client.event, org.jboss.security.identity, org.quartz.utils.weblogic, javax.servlet.jsp.tagext, com.arjuna.ats.jbossatx, org.hibernate.jmx, org.jboss.resource.work, javax.enterprise.deploy.spi.status, org.jboss.security.identitytrust.config, org.jboss.metadata.validation.validator, org.hibernate.hql.ast, antlr, com.arjuna.ats.internal.txoj, org.jboss.resource.statistic, org.jboss.naming, org.jboss.jms.server.connectionfactory, org.jboss.remoting.detection, org.hibernate.proxy.map, org.apache.commons.collections.buffer, org.jboss.metadata.validation.chain, org.jboss.wsf.spi.binding, org.jboss.wsf.spi.invocation, com.ibatis.sqlmap.engine.mapping.sql.stat, org.jboss.remoting.security, org.hibernate.annotations.common.util, org.jboss.ejb3.timerservice.quartz, javax.xml.registry, org.jboss.jpa.remote, org.jboss.metadata.javaee.jboss, org.jaxen.jdom, org.jboss.messaging.core.contract, org.jboss.ejb3.common.registrar.plugin.mc, org.jboss.messaging.util.prioritylinkedlist, org.jboss.ejb3.proxy.factory.session.service, org.apache.bsf.engines.javascript, antlr.preprocessor, org.jboss.wsf.framework.http, org.jboss.security.jce, org.jboss.ejb.plugins.jms, org.quartz.ee.jmx.jboss.doc-files, javax.xml.rpc.server, org.jboss.ejb3.proxy.clustered.factory.session.stateless, com.sun.mail.smtp, org.jboss.metadata.web.jboss, com.edb.core.types, org.jboss.remoting.transport.multiplex, org.quartz.jobs.ee.mail, org.apache.log4j.or.sax, org.jboss.wsf.common, org.jaxen.util, org.jboss.remoting.samples.http, org.jboss.aspects.security, org.jboss.security.acl, com.arjuna.common.util.concurrency, org.hibernate.engine.transaction, com.ibatis.common.beans, org.hibernate.bytecode.cglib, org.jboss.util.stream, org.jboss.jms.server.destination, javax.enterprise.deploy.shared.factories, org.jboss.ejb3.common.proxy.spi, org.jboss.ejb3.annotation, org.jboss.corba, org.hibernate.loader.criteria, org.jboss.metadata.merge, org.jboss.ejb3.proxy.clustered.objectfactory.session.stateless, org.jboss.ejb3.proxy.clustered.jndiregistrar, com.arjuna.ats.internal.tsmx.mbeans, org.hibernate.annotations.common, org.jboss.remoting.ident, org.jboss.invocation.unified.interfaces, org.jboss.security.plugins.authorization, org.jboss.ejb.deployers, org.hsqldb.util, org.jboss.hibernate, META-INF.maven.org.jboss.security.jboss-xacml, com.ibatis.sqlmap.engine.type, org.jboss.ejb3.metadata.jpa.spec, org.jboss.ejb3.proxy.objectfactory, org.jboss.ha.framework.server.spi, org.jboss.ejb3.interceptor, org.jboss.jms.server.endpoint.advised, javax.servlet.jsp, org.jboss.mx.remoting, org.jboss.security.factories, org.jboss.resource.connectionmanager.xa, org.jboss.verifier.factory, org.jboss.ha.hasessionstate.interfaces, org.jboss.aspects.remoting.interceptors.marshall, org.hibernate.engine.query, META-INF.maven.org.jboss.ejb3.jboss-ejb3-cache, org.apache.commons.logging, org.jboss.deployment.security, org.jboss.jpa.javaee, org.jboss.iiop.rmi.marshal.strategy, org.jboss.cache.invalidation.triggers, com.arjuna.ats.internal.arjuna.objectstore, org.jboss.tm, org.jboss.security.auth, javax.resource.cci, org.jboss.management.j2ee.deployers, org.jboss.jms.server, org.jboss.security.srp.jaas, com.edb.jdbc2, com.arjuna.common.internal.util.propertyservice, com.edb.jdbc3, javax.xml.ws.spi, org.jboss.naming.interceptors, org.jboss.metadata.annotation.creator.ejb.jboss, org.jboss.security.xacml.sunxacml.cond, org.jboss.security, org.jboss.security.auth.message.config, org.apache.commons.collections.functors, org.jboss.ejb3.proxy.clustered.invocation, META-INF.maven.org.jboss.cluster.jboss-ha-server-cache-jbc, org.jboss.slf4j, org.hibernate.mapping, org.jboss.jms.server.endpoint, org.jboss.metadata.process, META-INF.services, org.quartz.impl, org.jboss.ejb3.proxy.factory.session.stateful, org.hibernate.validator.interpolator, META-INF.maven.org.jboss.ws.jbossws-framework, org.jboss.ejb3.security, org.jboss.security.auth.login, org.apache.bsf.util.type, org.apache.commons.collections.collection, org.jboss.jms.client.state, com.arjuna.ats.internal.jta.resources.arjunacore, org.jboss.remoting.samples.transporter.multiple.server, org.jboss.ejb3.common.proxy.plugins.async, org.jboss.remoting.samples.config.factories, org.hibernate.ejb.instrument, org.apache.log4j.xml, org.jboss.remoting.samples.transporter.serialization, org.hibernate.action, org.jboss.resource, org.jboss.wsf.spi.tools, org.jboss.deployment.spi.beans, org.jboss.remoting.samples.transporter.clustered.client, org.jboss.ejb3, org.jboss.metadata.annotation.creator, org.jboss.ha.framework.server.deployers, org.jboss.ejb3.proxy.factory.stateless, org.quartz.jobs.ee.jmx, org.jboss.wsf.framework.invocation, org.apache.bsf.engines.jython, org.jboss.invocation.jrmp.server, org.jboss.wsf.spi.annotation, org.jboss.ejb3.connectionmanager, org.hibernate.dialect, org.jboss.ejb3.jms, org.jboss.invocation.unified.marshall, com.ibatis.sqlmap.engine.cache.lru, org.jboss.messaging.core.jmx, javax.mail, org.jboss.wsf.spi.deployment.integration, com.edb.core, org.hibernate.bytecode.javassist, com.edb.copy, org.apache.log4j.helpers, com.arjuna.ats.jta.recovery, META-INF.maven.org.jboss.metadata.jboss-metadata, org.jboss.security.xacml.core.ext, org.jboss.proxy.generic, org.jboss.metadata.lang, com.arjuna.ats.arjuna, org.slf4j.impl, com.arjuna.ats.internal.tsmx.agent.implementations.ri, org.hsqldb.index, org.jboss.persistence, org.hibernate.connection, org.jboss.aspects.remoting, org.jboss.remoting.serialization.impl.jboss, org.jboss.web.tomcat.service.sso.spi, org.jboss.jms.server.connectionmanager, com.ibatis.sqlmap.engine.mapping.statement, com.ibatis.common.xml, org.jboss.ejb3.proxy.handler.session.stateful, org.hibernate.proxy.pojo, org.jaxen.expr, com.ibatis.sqlmap.engine.mapping.parameter, org.jboss.remoting.samples.detection.jndi.ssl, org.jboss.messaging.core.impl.message, org.jboss.security.authorization.resources, org.jboss.ejb.plugins.cmp.jdbc2, org.jboss.metadata.ejb.jboss, antlr.collections, org.jboss.security.cache, org.jboss.web.tomcat.service.sso.jbc, javax.enterprise.deploy.model.exceptions, org.hsqldb.rowio, META-INF, org.jboss.mx.remoting.tracker, org.jboss.mx.remoting.provider.rmi, com.arjuna.ats.txoj.tools, org.jboss.security.xacml.core, org.jboss.wsf.spi.metadata.webservices, org.jboss.security.authorization.util, org.quartz.ee.jmx.jboss, org.jboss.ejb3.proxy.objectfactory.session.service, org.hibernate.validator, com.arjuna.ats.internal.arjuna.coordinator, org.apache.commons.collections.keyvalue, com.ibatis.common.resources, org.jboss.security.xacml.sunxacml.attr.proxy, javax.mail.internet, com.arjuna.ats.arjuna.objectstore, org.jboss.ha.framework.interfaces, org.apache.log4j.lf5.config, org.jboss.metadata.annotation.creator.jboss, org.jboss.invocation.pooled.interfaces, javax.xml.ws.handler, org.jboss.ejb3.cache, org.jboss.metadata.ejb.jboss.proxy, com.ibatis.common.logging.jdk14, com.arjuna.ats.internal.jta.resources, org.jboss.remoting.samples.transporter.basic.client, org.quartz.ee.jta, com.ibatis.common.jdbc.exception, org.hibernate.transaction, org.jboss.security.config, com.arjuna.ats.internal.jta.utils.arjunacore, org.jboss.ejb3.proxy.factory.session, org.jboss.ejb3.proxy.clustered.handler.session.stateless, javax.security.auth.message, org.jboss.ejb3.cache.tree, com.edb.xa, org.jboss.remoting.samples.callback.acknowledgement, com.ibatis.common.jdbc.logging, org.jboss.remoting.samples.serialization, org.jboss.hibernate.jmx, com.sun.mail.iap, META-INF.maven.org.jboss.aspects.jboss-current-invocation-aspects, com.ibatis.sqlmap.engine.scope, org.jboss.ejb3.proxy.factory.session.stateless, org.jboss.jms, org.jboss.ejb3.statistics, org.apache.commons.httpclient.params, org.jboss.ejb.plugins.cmp.jdbc.keygen, com.edb.geometric, org.apache.commons.logging.impl, org.hibernate.intercept, com.arjuna.ats.internal.jdbc.recovery, org.quartz.plugins.history, org.jboss.jmx.connector.invoker.serializablepolicy, javax.ejb, org.jboss.ha.singleton, com.sun.mail.imap, org.apache.commons.collections, org.jboss.ejb.plugins.keygenerator, org.hibernate.jdbc, org.jboss.security.audit, org.jboss.wsf.spi.http, com.ibatis.sqlmap.engine.mapping.result.loader, org.jboss.managed.plugins.advice, org.hsqldb.store, org.slf4j.spi, org.jboss.wsf.spi, org.jboss.remoting.samples.transporter.complex.client, org.jboss.jms.recovery, org.jboss.iiop, com.arjuna.ats.internal.jta.transaction.arjunacore.subordinate, org.jboss.ha.jmx.examples, org.jboss.monitor.client, org.jboss.security.xacml.sunxacml.cond.cluster, org.hibernate.secure, org.jboss.metadata, org.jboss.ejb3.tx, org.jboss.security.callbacks, com.arjuna.ats.internal.arjuna.thread, org.quartz.impl.jdbcjobstore.oracle, javax.xml.ws.soap, org.jboss.ejb3.interceptors, org.jboss.wsf.spi.metadata.j2ee, javax.xml.ws.wsaddressing, org.hibernate.cfg, org.jboss.management.j2ee.cluster, org.jboss.security.client, org.jboss.security.plugins.identitytrust, org.jboss.ejb3.interceptors.metadata, org.jboss.ejb3.proxy.handler, org.hibernate.tool.instrument.javassist, org.jboss.ejb3.remoting, org.jboss.metadata.ejb.jboss.jndipolicy.spi, com.arjuna.ats.internal.jta, org.jboss.security.plugins.javaee, com.ibatis.common.logging.jakarta, org.jaxen.saxpath.base, org.jboss.remoting.network.filter, META-INF.maven.org.jboss.ejb3.jboss-ejb3-interceptors, org.apache.commons.httpclient.cookie, org.jboss.remoting.marshal, org.jboss.ejb3.resolvers, org.hibernate.cache.impl, org.jboss.proxy.compiler, org.jboss.jpa.deployment, org.jboss.serial.exception, org.jboss.invocation.unified.server, org.hibernate.id.insert, org.jboss.ejb.plugins.cmp.ejbql, org.jboss.cache.invalidation.bridges, org.jboss.remoting.transport.local, com.arjuna.common.internal.util.logging.jakarta, org.jaxen.dom, com.arjuna.ats.arjuna.gandiva, com.arjuna.ats.arjuna.tools, org.jboss.remoting.marshal.http, bsh.util, org.apache.log4j.lf5.viewer.categoryexplorer, org.jboss.ejb.plugins, org.jboss.ejb.txtimer, org.jboss.serial.references, javax.xml.rpc.handler, org.jboss.ejb3.pool, org.hibernate.hql.ast.util, org.jboss.mx.remoting.connector, org.jboss.security.auth.callback, org.jboss.metadata.annotation.creator.ejb, org.apache.commons.collections.comparators, org.jboss.ejb3.stateless, com.arjuna.ats.internal.jdbc.drivers.modifiers, org.jboss.remoting.samples.detection.jndi, com.arjuna.ats.arjuna.logging, org.jboss.ejb3.interceptors.aop.annotation, org.jboss.ejb3.annotation.impl, org.jboss.ejb3.mdb.inflow, javax.servlet.resources, org.jboss.security.authorization.modules.ejb, org.jboss.proxy, org.jboss.remoting.samples.chat.server, org.jboss.jms.jndi, org.jboss.aspects.txlock, org.jboss.remoting.transport.https, org.quartz.impl.jdbcjobstore.oracle.weblogic, org.jboss.security.xacml.sunxacml.attr, org.jboss.iiop.csiv2, org.jboss.remoting.transport.coyote.ssl, javax.el, org.jaxen.xom, META-INF.maven.org.jboss.ejb3.jboss-ejb3-metadata, com.arjuna.ats.internal.jbossatx.agent, javax.management.j2ee.statistics, META-INF.maven.org.jboss.javaee.jboss-jaspi-api, com.arjuna.ats.internal.arjuna.gandiva.inventory, org.jboss.ejb3.service, org.jboss.remoting.samples.chat.client, org.jboss.metadata.validation.validator.ejb, org.hibernate.ejb.util, org.hibernate.ejb, org.jboss.security.plugins.auth, org.hibernate.dialect.function, org.jboss.invocation.http.interfaces, com.arjuna.ats.arjuna.recovery, org.quartz.impl.jdbcjobstore, schema, org.jboss.messaging.core.impl.postoffice, org.jboss.security.authorization, org.jboss.ejb3.cache.simple, META-INF.maven.org.jboss.ejb3.jboss-ejb3-core, org.jboss.ejb3.interceptors.annotation.impl, org.jboss.monitor.services, org.jboss.profileservice.spi, org.jboss.remoting.socketfactory, org.jboss.profileservice.spi.types, org.apache.commons.collections.list, org.jboss.tm.iiop, com.arjuna.ats.arjuna.common, org.jboss.jms.server.recovery, org.hibernate.annotations.common.reflection.java.generics, antlr.actions.java, com.ibatis.sqlmap.engine.exchange, org.jboss.resource.deployment, org.jboss.annotation.ear, com.ibatis.sqlmap.engine.mapping.sql.simple, META-INF.maven.org.jboss.naming.jnpserver, org.jboss.ha.jndi.impl.jbc, org.hibernate.dialect.lock, org.jboss.remoting.transport.coyote, org.apache.commons.httpclient.auth, org.hibernate.proxy.dom4j, org.hibernate.pretty, javax.annotation, org.jboss.remoting.transport.multiplex.utility, javax.xml.ws.handler.soap, org.hibernate.util, javax.resource, org.jaxen.dom4j, org.jboss.jms.tx, org.jboss.remoting.util.socket, org.jboss.jmx.connector.invoker.client, META-INF.maven.org.jboss.slf4j.slf4j-jboss-logging, org.jboss.wsf.spi.management.recording, META-INF.maven.org.jboss.ws.native.jbossws-native-jaxws, com.arjuna.ats.internal.arjuna.state, org.jboss.jpa.deployers, org.hibernate.proxy.pojo.cglib, com.sun.mail.pop3, org.jboss.proxy.ejb, org.jboss.messaging.core.impl.memory, org.jboss.remoting.samples.transporter.custom.client, org.jboss.security.javaee, org.apache.log4j.ext, org.apache.bcel.verifier.statics, org.jboss.jms.client.container, org.jboss.metadata.rar.spec, org.slf4j, org.apache.bsf.util.event, com.arjuna.common.internal.util.logging, META-INF.maven.org.jboss.ejb3.jboss-ejb3-transactions, org.jboss.remoting.samples.transporter.serialization.client, org.jboss.serial.objectmetamodel.safecloning, org.hibernate.ejb.packaging, org.jboss.ejb3.proxy.clustered.objectfactory.session, javax.persistence.spi, bsh.classpath, com.arjuna.ats.tsmx, org.jboss.ejb.plugins.cmp.bridge, org.jboss.resource.metadata.repository, com.arjuna.ats.tsmx.logging, org.jboss.cache.invalidation, org.jboss.profileservice.aop, org.hibernate.cache.impl.bridge, org.jboss.remoting.network, org.jboss.ejb3.cache.impl, org.jboss.ejb3.naming.client.java, org.jboss.ha.jmx, org.apache.commons.httpclient.util, org.jboss.monitor.alarm, dtd, com.ibatis.sqlmap.client, com.ibatis.sqlmap.engine.mapping.sql, META-INF.maven.org.jboss.aspects.jboss-transaction-aspects, org.jboss.metadata.annotation.creator.web, org.jboss.jms.destination, org.jboss.remoting.samples.chat.exceptions, org.jboss.web.deployers, org.jboss.ejb.plugins.security, org.jboss.tm.usertx.interfaces, com.edb.ssl, org.jboss.wsf.common.handler, org.jboss.ejb3.proxy.container, com.ibatis.common.logging, javax.servlet.jsp.el, META-INF.maven.org.jboss.ws.jbossws-spi, org.jboss.remoting.marshal.encryption, org.jboss.ejb3.entity, org.jboss.security.microcontainer.beans, org.jboss.jms.server.jbosssx, org.jboss.jms.client, org.apache.log4j.jmx, org.jboss.ejb.plugins.inflow, org.jboss.ejb3.security.client, org.jboss.ha.framework.server, org.apache.log4j.config, org.jboss.profileservice.spi.repository, org.jboss.serial, org.hibernate.tuple.entity, javax.xml.ws.addressing, org.jboss.tm.usertx.server, org.jboss.resource.adapter.jdbc.jdk5, org.jboss.remoting.marshal.compress, org.jboss.security.annotation, META-INF.maven.org.jboss.ejb3.jboss-ejb3-deployers, com.arjuna.ats.internal.jta.transaction.arjunacore.jca, org.jboss.metadata.ear.jboss, org.jboss.injection, com.ibatis.sqlmap.engine.transaction.jta, com.arjuna.ats.jta.exceptions, org.jboss.jms.message, org.jboss.serial.persister, org.hibernate.hql.classic, org.jboss.remoting.util, org.quartz.jobs.ee.ejb, org.jboss.remoting.callback, org.jboss.remoting.samples.transporter.simple, org.jboss.resource.statistic.pool, com.arjuna.ats.jta.logging, com.ibatis.sqlmap.engine.transaction.external, com.ibatis.sqlmap.engine.cache, org.hibernate.criterion, javax.transaction, javax.xml.soap, org.jboss.security.xacml.core.model.context, org.jboss.remoting.marshal.rmi, org.jboss.invocation.jrmp.interfaces, org.jboss.security.jacc, org.apache.log4j, org.jboss.ejb3.proxy.clustered.objectfactory, org.hibernate.tool.instrument, org.jboss.remoting.samples.transporter.basic.server, org.jboss.ejb3.annotation.defaults, org.jboss.iiop.rmi, org.jboss.mq.server.jmx, org.jboss.metadata.ear.spec, org.jboss.security.plugins, org.jboss.ejb3.proxy.impl, org.apache.commons.collections.bag, org.apache.log4j.chainsaw, org.opennms.protocols.snmp, org.jboss.deployment.spi.factories, org.jboss.security.mapping.config, org.jboss.aspects.remoting.interceptors.transport, com.ibatis.sqlmap.engine.builder.xml, org.jboss.serial.classmetamodel, com.arjuna.ats.internal.arjuna.recovery, org.jboss.security.identity.plugins, org.apache.bsf.util.event.generator, org.apache.bcel, org.jboss.remoting.transport.http, org.jboss.tm.usertx, org.jboss.remoting.marshall.encryption, org.jboss.security.auth.message, org.hibernate.loader.hql, org.jboss.security.identity.extensions, META-INF.maven.org.jboss.ejb3.jboss-ejb3-common, javax.mail.search, org.jboss.security.auth.container.modules, org.hibernate.metadata, org.jboss.metadata.web.spec, org.jboss.deployment.spi, org.jboss.security.authorization.config, org.jboss.iiop.tm, org.jboss.ejb3.interceptors.util, org.jboss.wsf.framework.deployment, org.jboss.ejb3.asynchronous, org.hibernate.property, org.jboss.remoting.samples.stream, javax.management.j2ee, org.jboss.util, org.jboss.mx.remoting.rmi, org.jboss.deployment.remoting, org.jnp.interfaces.jnp, org.hibernate.collection, org.jboss.management.j2ee.factory, com.ibatis.common.util, org.hibernate.exception, org.jboss.wsf.spi.tools.cmd, org.jboss.naming.client.java, com.sun.mail.util, org.hibernate.param, META-INF.maven.org.jboss.ejb3.jboss-ejb3-proxy, org.jboss.metadata.rar.jboss.mcf, org.jboss.wsf.spi.invocation.integration, com.arjuna.ats.arjuna.xa, org.jboss.jms.server.plugin, org.jboss.ejb.plugins.cmp.jdbc2.keygen, org.jboss.wsf.common.servlet, javax.servlet.jsp.resources, org.jboss.security.plugins.mapping, org.jboss.hibernate.session, org.jboss.remoting.transport.sslbisocket, com.sun.mail.imap.protocol, org.jboss.ejb3.timerservice.quartz.jmx, com.edb.jdbc2.optional, META-INF.maven.org.jboss.aspects.jboss-security-aspects, org.jboss.remoting.transport, org.jboss.jpa.spi, com.arjuna.ats.internal.arjuna.utils, org.apache.bcel.classfile, org.jboss.ejb3.stateful, antlr.ASdebug, org.jboss.metadata.client.jboss, org.hibernate.tool.hbm2ddl, org.jboss.jms.referenceable, com.arjuna.ats.arjuna.exceptions, org.hibernate.loader.custom.sql, org.jboss.remoting.samples.callback, com.arjuna.ats.internal.arjuna.objectstore.jdbc.accessors, org.jboss.ws.tools.ant, org.hsqldb.types, org.jboss.iiop.codebase, META-INF.maven.org.hibernate.hibernate-jmx, org.jboss.security.xacml.factories, org.apache.bcel.verifier, com.ibatis.sqlmap.engine.transaction, org.apache.commons.httpclient, com.arjuna.ats.jdbc.logging, org.jboss.ejb.plugins.cmp.jdbc2.bridge, org.jaxen.saxpath, antlr.debug, com.arjuna.common.util.propertyservice.plugins, org.jboss.metadata.process.chain, antlr.actions.csharp, org.jboss.remoting.security.domain, org.jboss.security.xacml.sunxacml.finder, org.jboss.ejb3.proxy.remoting, org.jboss.ejb.plugins.cmp.jdbc.bridge, org.jboss.iiop.rmi.ir, org.jboss.jms.server.selector, org.jboss.ejb3.proxy.handler.stateful, org.hibernate.annotations.common.annotationfactory, org.jboss.ejb3.security.bridge, org.jboss.security.audit.config, org.jboss.remoting.transport.http.ssl, org.jboss.deployment.plugin, org.jboss.security.xacml.core.model.policy, org.apache.log4j.net, org.jboss.ejb3.tx.metadata, org.jboss.security.auth.certs, antlr.actions.cpp, org.jboss.metadata.ejb.jboss.jndipolicy.plugins, org.jboss.resource.metadata.mcf, licenses, com.ibatis.sqlmap.engine.config, org.hibernate.event, org.jboss.metadata.common.ejb, org.jaxen.function.xslt, javax.resource.spi.endpoint, javax.resource.spi.security, org.hibernate.cfg.annotations, META-INF.maven.org.jboss.cluster.jboss-ha-server-cache-spi, org.jboss.wsf.framework.management, org.jboss.ejb3.cache.grouped, org.jboss.metadata.javaee.support, org.jboss.ejb3.session, org.jboss.ejb3.proxy.handler.session.stateless, org.jboss.remoting.transport.socket, org.quartz.ee.servlet, com.arjuna.ats.jta, org.jboss.profileservice.remoting, javax.xml.rpc.encoding, javax.enterprise.deploy.spi.factories, org.jboss.security.audit.providers, javax.annotation.security, org.jboss.remoting.transport.sslmultiplex, org.jboss.varia.scheduler, com.ibatis.sqlmap.engine.mapping.sql.dynamic, org.jboss.logging, org.jboss.metadata.javaee.spec, org.jboss.jdbc, com.arjuna.ats.internal.jdbc, com.ibatis.common.io] <IMPORT-ALL>NON_EMPTY}}
    at org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:385)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at org.hibernate.util.ReflectHelper.classForName(ReflectHelper.java:123)
    at org.hibernate.connection.DriverManagerConnectionProvider.configure(DriverManagerConnectionProvider.java:84)
    at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:137)
    at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:79)
    at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:448)
    at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:89)
    at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2101)
    at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1325)
    at ws.RobinWebService.getRobinTest(RobinWebService.java:71)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397)
    at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186)
    at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)
    at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
    at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)
    at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
    at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
    at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
    at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:601)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
    at java.lang.Thread.run(Unknown Source)
    16:56:55,319 ERROR [STDERR] Failed to create sessionFactory object.org.hibernate.HibernateException: JDBC Driver class not found: oracle.jdbc.OracleDriver
    16:58:29,557 INFO [STDOUT] hello
    16:58:29,557 INFO [Configuration] configuring from resource: support/oracle.hibernate.cfg.xml
    16:58:29,557 INFO [Configuration] Configuration resource: support/oracle.hibernate.cfg.xml
    16:58:30,116 INFO [Configuration] Reading mappings from resource : support/Centres.hbm.xml
    16:58:30,116 INFO [HbmBinder] Mapping class: ws.Centres -> CENTRE_DETAIL
    16:58:30,116 INFO [Configuration] Reading mappings from resource : support/RobinTest.hbm.xml
    16:58:30,116 INFO [HbmBinder] Mapping class: ws.RobinTest -> ROBIN_TEST
    16:58:30,116 INFO [Configuration] Configured SessionFactory: null
    16:58:30,116 INFO [DriverManagerConnectionProvider] Using Hibernate built-in connection pool (not for production use!)
    16:58:30,116 INFO [DriverManagerConnectionProvider] Hibernate connection pool size: 1
    16:58:30,116 INFO [DriverManagerConnectionProvider] autocommit mode: false
    16:58:30,131 ERROR [DriverManagerConnectionProvider] JDBC Driver class not found: oracle.jdbc.OracleDriver
    java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver from BaseClassLoader@1652e61{VFSClassLoaderPolicy@1c7eb33{name=vfsfile:/C:/Jboss/jboss-5.0.0.GA/server/default/conf/jboss-service.xml domain=ClassLoaderDomain@9fe84e{name=DefaultDomain parentPolicy=BEFORE parent=org.jboss.system.NoAnnotationURLClassLoader@a97b0b} roots=[MemoryContextHandler@2254409[path= context=vfsmemory://4shc4f-nlo6vf-hjk3qb83-1-hjk3qewj-6 real=vfsmemory://4shc4f-nlo6vf-hjk3qb83-1-hjk3qewj-6], DelegatingHandler@6903079[path=antlr.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/antlr.jar], DelegatingHandler@22387624[path=autonumber-plugin.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/autonumber-plugin.jar], DelegatingHandler@22963857[path=bcel.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/bcel.jar], DelegatingHandler@10479206[path=bsf.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/bsf.jar], DelegatingHandler@30371681[path=bsh.jar context=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/ real=file:/C:/Jboss/jboss-5.0.0.GA/common/lib/bsh.jar], DelegatingHandler@26839239[path=commons

    You have to put the path of the driver jar file on server.xml file. If you open up the server.xml file inside the config directory of the appserver instance you will find all the paths are added to <java-config java-home = tag. So place the path in this place. Then there should not be any problem getting the driver.
    Thanks

  • 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

  • Error While Installing ABAP Netweaver Trail

    Hi Everyone,
    I am New to this network,
    Can anyone please help me, when i am installing SAP_NetWeaver_702e_Installation_Master Trail I am getting this error.
    How to resolve this issue?
    An error occurred while processing option SAP NetWeaver 7.0 including Enhancement Package 2 > SAP Application Server ABAP > MaxDB > 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/NW702/AS-ABAP/ADA/CENTRAL/.
    Error log file is
    TRACE      2014-10-21 01:34:02.508 [iaxxclib.cpp:188]
               CLib::load()
    Opened sylib721.dll
    TRACE      2014-10-21 01:34:02.508
    exe dir is C:\Users\Aditya\AppData\Local\Temp\sapinst_exe.3332.1413835438
    TRACE      2014-10-21 01:34:02.679
    MessageLib initialized successfully.
    INFO       2014-10-21 01:34:03.101 [synxcpath.cpp:815]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Users\Aditya\AppData\Local\Temp\sapinst_exe.3332.1413835438\dev_sap_kernel_test_21_Oct_2014_01_34_02.
    INFO       2014-10-21 01:34:03.101 [synxcfile.cpp:416]
               CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
               lib=syslib module=syslib
    Removed file C:\Users\Aditya\AppData\Local\Temp\sapinst_exe.3332.1413835438\dev_sap_kernel_test_21_Oct_2014_01_34_02.
    TRACE      2014-10-21 01:34:03.116 [syxxclogbook.cpp:209]
               PSyLogBook::initSAPKernelTracing(int traceLevel, const CSyPath & filePath)
               lib=syslib module=syslib
    Initialized SAP kernel tracing to file C:\Users\Aditya\AppData\Local\Temp\sapinst_exe.3332.1413835438\dev_sap_kernel
    INFO       2014-10-21 01:34:03.116 [synxcpath.cpp:815]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Users\Aditya\AppData\Local\Temp\sapinst_exe.3332.1413835438\dev_sap_kernel_test_21_Oct_2014_01_34_03.
    INFO       2014-10-21 01:34:03.116 [synxcfile.cpp:416]
               CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
               lib=syslib module=syslib
    Removed file C:\Users\Aditya\AppData\Local\Temp\sapinst_exe.3332.1413835438\dev_sap_kernel_test_21_Oct_2014_01_34_03.
    TRACE      2014-10-21 01:34:03.132 [syxxclogbook.cpp:209]
               PSyLogBook::initSAPKernelTracing(int traceLevel, const CSyPath & filePath)
               lib=syslib module=syslib
    Initialized SAP kernel tracing to file C:\Users\Aditya\AppData\Local\Temp\sapinst_exe.3332.1413835438\dev_sap_kernel
    TRACE      2014-10-21 01:34:03.132 [iaxxclib.cpp:188]
               CLib::load()
    Opened C:\Users\Aditya\AppData\Local\Temp\sapinst_exe.3332.1413835438/iaguieng721.dll
    TRACE      2014-10-21 01:34:03.132 [iaxxgenimp.cpp:918]
               CGuiEngineImp::init()
    receiving and sending on port 21200
    TRACE      2014-10-21 01:34:03.147 [syxxccuren.cpp:31]
               CSyCurrentProcessEnvironmentImpl::setEnvironmentVariable(const iastring & 'SAPINST_JRE_HOME', const iastring & 'C:/Users/Aditya/AppData/Local/Temp/sapinst_exe.3332.1413835438/jre')
               lib=syslib module=syslib
    Environment variable SAPINST_JRE_HOME set to value 'C:/Users/Aditya/AppData/Local/Temp/sapinst_exe.3332.1413835438/jre'.
    TRACE      2014-10-21 01:34:04.396
    exe dir is C:/Users/Aditya/AppData/Local/Temp/sapinst_exe.3332.1413835438
    INFO       2014-10-21 01:34:04.396 [synxcpath.cpp:815]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\x.
    INFO       2014-10-21 01:34:04.396 [synxcfile.cpp:416]
               CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
               lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\x.
    TRACE      2014-10-21 01:34:04.396 [iaxxclib.cpp:188]
               CLib::load()
    Opened C:\Users\Aditya\AppData\Local\Temp\sapinst_exe.3332.1413835438/iakdblib721.dll
    TRACE      2014-10-21 01:34:04.396
    SAPinst build information:
    abi version : 721
    make variant: 720_REL
    build       : 1147189
    compile time: Apr 20 2010 22:51:41
    TRACE      2014-10-21 01:34:04.630 [iaxxgenimp.cpp:469]
               CGuiEngineImp::showDialog()
    showing dlg diProductChoice
    TRACE      2014-10-21 01:34:04.630 [iaxxgenimp.cpp:488]
               CGuiEngineImp::showDialog()
    <dialog sid="diProductChoice">
    <title>Welcome to SAP Installation Master</title>
    <dialog/>
    TRACE      2014-10-21 01:34:12.729 [iaxxclogintimeout.cpp:102]
               CLoginTimeout::run()
    Login in progress
    TRACE      2014-10-21 01:34:12.729
    Connection request to guiengine backend by host 192.168.1.3
    TRACE      2014-10-21 01:34:12.807
    Protocol version is 3.1
    TRACE      2014-10-21 01:34:12.807
    Send connect information
    TRACE      2014-10-21 01:34:12.807
    client logged on
    TRACE      2014-10-21 01:34:13.57 [iaxxgenimp.cpp:1245]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    TRACE      2014-10-21 01:34:22.745 [iaxxdlghnd.cpp:97]
               CDialogHandler::doHandleDoc()
    CDialogHandler: ACTION_NEXT requested
    TRACE      2014-10-21 01:34:22.745 [iaxxcdialogdoc.cpp:203]
               CDialogDocument::submit()
    <dialog sid="diProductChoice">
    <dialog/>
    INFO       2014-10-21 01:34:22.776 [synxcpath.cpp:815]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\x.
    INFO       2014-10-21 01:34:22.776 [synxcfile.cpp:416]
               CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
               lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\x.
    TRACE      2014-10-21 01:34:22.916 [iaxxgenimp.cpp:469]
               CGuiEngineImp::showDialog()
    showing dlg diRestartOrCancel
    TRACE      2014-10-21 01:34:22.916 [iaxxgenimp.cpp:488]
               CGuiEngineImp::showDialog()
    <dialog sid="diRestartOrCancel">
    Dialog does not contain standard input handler, so the backend is not able to generate a log entry
    <dialog/>
    TRACE      2014-10-21 01:34:22.916 [iaxxgenimp.cpp:1245]
               CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    TRACE      2014-10-21 01:34:26.395
    current working directory is C:\Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/
    INFO       2014-10-21 01:34:26.411 [synxcpath.cpp:815]
               CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\x.
    INFO       2014-10-21 01:34:26.411 [synxcfile.cpp:416]
               CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
               lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\x.
    TRACE      2014-10-21 01:34:26.411 [syxxcfile.cpp:168]
               CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/dev_sap_kernel, m_realNodeType: 2}, ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
               lib=syslib module=syslib
    Target file exists and (mode & ISyNode::EXISTING) ==> I will copy/move.
    INFO       2014-10-21 01:34:26.411 [synxcfile.cpp:416]
               CSyFileImpl::removeEx(ISyFSErrorHandler * pErrorHandler)
               lib=syslib module=syslib
    Removed file C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\dev_sap_kernel.
    TRACE      2014-10-21 01:34:26.411 [syxxcnode.cpp:441]
               CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL, ISyNode::CopyMoveMode_t 0x3)
               lib=syslib module=syslib
    Moved C:/Users/Aditya/AppData/Local/Temp/sapinst_exe.3332.1413835438/dev_sap_kernel to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/dev_sap_kernel
    TRACE      2014-10-21 01:34:26.411 [syxxclogbook.cpp:209]
               PSyLogBook::initSAPKernelTracing(int traceLevel, const CSyPath & filePath)
               lib=syslib module=syslib
    Initialized SAP kernel tracing to file C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\dev_sap_kernel
    TRACE      2014-10-21 01:34:27.471
    Running with toplevel file C:\Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL//toplevel.xml
    TRACE      2014-10-21 01:34:27.487 [syxxcfile.cpp:130]
               CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst_dev.4.log, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
               lib=syslib module=syslib
    Target node does not exists and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-10-21 01:34:27.487 [syxxcnode.cpp:441]
               CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst_dev.4.log, ISyNode::CopyMoveMode_t 0x3)
               lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst_dev.log to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst_dev.4.log
    TRACE      2014-10-21 01:34:27.503 [syxxcfile.cpp:130]
               CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst.4.log, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
               lib=syslib module=syslib
    Target node does not exists and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-10-21 01:34:27.503 [syxxcnode.cpp:441]
               CSyNodeImpl::move(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst.4.log, ISyNode::CopyMoveMode_t 0x3)
               lib=syslib module=syslib
    Moved C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst.log to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/sapinst.4.log
    TRACE      2014-10-21 01:34:27.674
    Using custom value info for property SAPINST_MESSAGE_CONSOLE_THRESHOLD.
    TRACE      2014-10-21 01:34:27.674
    Running with dialog file C:\Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL//dialog.xml
    TRACE      2014-10-21 01:34:27.799
    Running with keydb file C:\Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL//keydb.xml
    TRACE      2014-10-21 01:34:28.142 [syxxcfile.cpp:130]
               CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.12.xml, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
               lib=syslib module=syslib
    Target node does not exists and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-10-21 01:34:28.142 [synxcfile.cpp:516]
               CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.12.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const 
               lib=syslib module=syslib
    Copying file C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.xml to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.12.xml
    INFO       2014-10-21 01:34:28.158 [synxcfile.cpp:716]
               CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.12.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const 
               lib=syslib module=syslib
    Copied file 'C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.xml' to 'C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.12.xml'.
    TRACE      2014-10-21 01:34:29.344 [kdxxctaco.cpp:219]
               CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2014-10-21 01:34:29.454 [syxxcfile.cpp:130]
               CSyFileImpl::decideIfMoveCopyNode(const CopyMoveDestinationInfo & {m_nodeTypeForCombiCheck: ..., m_path: C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.13.xml, m_realNodeType: 8}, ISyNode::CopyMoveMode_t 0x3, PSyNode &) const 
               lib=syslib module=syslib
    Target node does not exists and (mode & ISyNode::MISSING) ==> I will copy/move.
    TRACE      2014-10-21 01:34:29.454 [synxcfile.cpp:516]
               CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.13.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const 
               lib=syslib module=syslib
    Copying file C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.xml to C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.13.xml
    INFO       2014-10-21 01:34:29.469 [synxcfile.cpp:716]
               CSyFileImpl::copy(const CSyPath & C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.13.xml, ISyNode::CopyMoveMode_t 0x3, ISyProgressObserver*) const 
               lib=syslib module=syslib
    Copied file 'C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.xml' to 'C:/Program Files/sapinst_instdir/NW702/AS-ABAP/ADA/CENTRAL/statistic.13.xml'.
    TRACE      2014-10-21 01:34:29.469 [kdxxctaco.cpp:252]
               CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    after creating out stream
    TRACE      2014-10-21 01:34:29.578 [kdxxctaco.cpp:286]
               CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2014-10-21 01:34:30.889 [kdxxctaco.cpp:219]
               CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2014-10-21 01:34:30.998 [kdxxctaco.cpp:252]
               CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    after creating out stream
    TRACE      2014-10-21 01:34:31.107 [kdxxctaco.cpp:286]
               CKdbTableContainerImpl::syncToContainerFile lib=iakdblib
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2014-10-21 01:34:42.638
    SAPinst was started using commandline: C:\Users\Aditya\AppData\Local\Temp\sapinst_exe.3332.1413835438\sapinst.exe
    TRACE      2014-10-21 01:34:42.638
    SAPinst properties are :
    GUISERVER_DIALOG_PORT=21212
    GUISERVER_HTTP_PORT=4239
    SAPINST_CONTROL_URL=control.xml
    SAPINST_DIALOG_PORT=21200
    SAPINST_DIALOG_URL=dialog.xml
    SAPINST_EXE=SAPINST_EXE
    SAPINST_JSLIB_TRACE=NW,NWUsers,OraCom,NWCTC,ClusterMgt,SystemIdentity
    SAPINST_KEYDB_URL=keydb.xml
    SAPINST_MESSAGE_CONSOLE_THRESHOLD=info
    SAPINST_MESSAGE_URL=.
    SAPINST_PACKAGES_URL=packages.xml
    SAPINST_RESOURCE_URL=resourcepool.xml
    SAPINST_SAVE_INPUT=true
    SAPINST_SCAN_DEVICES=false
    SAPINST_SKIP_DIALOGS=false
    SAPINST_TOPLEVEL_URL=toplevel.xml
    SAPINST_USE_ADVANCED_JS_HANDLING=true
    SELFEXTRACTOR_EXECUTABLE_NAME=D:/For Abap/NWABAPTRIAL70211_64_GW204/SAP_NetWeaver_702e_Installation_Master/IM_WINDOWS_X86_64/sapinst.exe

    Hi all,
    Can any one help me on this issue please..
    An error occurred while processing option SAP NetWeaver 7.0 including Enhancement Package 2 > SAP Application Server ABAP > MaxDB > 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/NW702/AS-ABAP/ADA/CENTRAL/.
    Import Monitor.java file
    java version "1.8.0_25"
    Java(TM) SE Runtime Environment (build 1.8.0_25-b18)
    Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)
    Import Monitor jobs: running 1, waiting 2, completed 31, failed 0, total 34.
    Import Monitor jobs: running 2, waiting 1, completed 31, failed 0, total 34.
    Loading of 'D010TAB' import package: ERROR
    Import Monitor jobs: running 1, waiting 1, completed 31, failed 1, total 34.
    Loading of 'WBCROSSGT' import package: ERROR
    Import Monitor jobs: running 0, waiting 1, completed 31, failed 2, total 34.
    Import_monitor.log file
    INFO: 2014-10-20 18:37:17
    Import Monitor is started.
    CONFIG: 2014-10-20 18:37:17
    Application options:
    dbCodepage=4103
    dbType=ADA
    extFiles=no
    importDirs=D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1;D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP2;D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP3
    installDir=C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL
    jobNum=3
    loadArgs=-nolog -c 50000 -force_repeat -loadprocedure dbsl
    monitorTimeout=30
    orderBy=
    r3loadExe=C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe
    sapinst=
    trace=all
    tskFiles=yes
    CONFIG: 2014-10-20 18:37:17
    List of packages with table structure: 'SAP0000'.
    CONFIG: 2014-10-20 18:37:17
    List of packages with views: 'SAPVIEW'.
    TRACE: 2014-10-20 18:37:17 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL' template file is started.
    INFO: 2014-10-20 18:37:17 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL' template file is successfully completed.
    Primary key creation: before load.
    Index creation: after load.
    INFO: 2014-10-20 18:37:17
    Data codepage 4103 is determined using TOC file 'D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\ATAB.TOC' for package 'ATAB'.
    TRACE: 2014-10-20 18:37:17 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL1_1' import package is started.
    TRACE: 2014-10-20 18:37:17 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPAPPL1_1' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPAPPL1_1.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPAPPL1_1.TSK ADA -l SAPAPPL1_1.log
    TRACE: 2014-10-20 18:37:17 com.sap.inst.migmon.LoadTask run
    Loading of 'REPOSRC' import package is started.
    TRACE: 2014-10-20 18:37:17 com.sap.inst.migmon.LoadTask run
    Loading of 'DOKCLU' import package is started.
    TRACE: 2014-10-20 18:37:17 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'REPOSRC' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\REPOSRC.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" REPOSRC.TSK ADA -l REPOSRC.log
    TRACE: 2014-10-20 18:37:17 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'DOKCLU' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\DOKCLU.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" DOKCLU.TSK ADA -l DOKCLU.log
    TRACE: 2014-10-20 18:37:17 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'REPOSRC' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i REPOSRC.cmd -dbcodepage 4103 -l REPOSRC.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    TRACE: 2014-10-20 18:37:17 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'DOKCLU' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i DOKCLU.cmd -dbcodepage 4103 -l DOKCLU.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    TRACE: 2014-10-20 18:37:18 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPAPPL1_1' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPAPPL1_1.cmd -dbcodepage 4103 -l SAPAPPL1_1.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 18:46:52 com.sap.inst.migmon.LoadTask run
    Loading of 'DOKCLU' import package is successfully completed.
    TRACE: 2014-10-20 18:47:17 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC_3' import package is started.
    TRACE: 2014-10-20 18:47:17 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPSSEXC_3' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPSSEXC_3.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPSSEXC_3.TSK ADA -l SAPSSEXC_3.log
    TRACE: 2014-10-20 18:47:17 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSSEXC_3' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSSEXC_3.cmd -dbcodepage 4103 -l SAPSSEXC_3.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 19:17:32 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL1_1' import package is successfully completed.
    TRACE: 2014-10-20 19:17:58 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL0_1' import package is started.
    TRACE: 2014-10-20 19:17:58 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPAPPL0_1' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPAPPL0_1.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPAPPL0_1.TSK ADA -l SAPAPPL0_1.log
    TRACE: 2014-10-20 19:18:02 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPAPPL0_1' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPAPPL0_1.cmd -dbcodepage 4103 -l SAPAPPL0_1.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 19:29:15 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL0_1' import package is successfully completed.
    TRACE: 2014-10-20 19:29:29 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC_1' import package is started.
    TRACE: 2014-10-20 19:29:29 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPSSEXC_1' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPSSEXC_1.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPSSEXC_1.TSK ADA -l SAPSSEXC_1.log
    TRACE: 2014-10-20 19:29:29 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSSEXC_1' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSSEXC_1.cmd -dbcodepage 4103 -l SAPSSEXC_1.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 19:31:58 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC_1' import package is successfully completed.
    TRACE: 2014-10-20 19:31:59 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC_2' import package is started.
    TRACE: 2014-10-20 19:31:59 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPSSEXC_2' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPSSEXC_2.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPSSEXC_2.TSK ADA -l SAPSSEXC_2.log
    TRACE: 2014-10-20 19:31:59 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSSEXC_2' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSSEXC_2.cmd -dbcodepage 4103 -l SAPSSEXC_2.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 19:33:44 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC_3' import package is successfully completed.
    TRACE: 2014-10-20 19:33:59 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL2' import package is started.
    TRACE: 2014-10-20 19:33:59 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPAPPL2' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPAPPL2.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPAPPL2.TSK ADA -l SAPAPPL2.log
    TRACE: 2014-10-20 19:34:03 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPAPPL2' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPAPPL2.cmd -dbcodepage 4103 -l SAPAPPL2.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 19:45:56 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL2' import package is successfully completed.
    TRACE: 2014-10-20 19:45:59 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPNTAB' import package is started.
    TRACE: 2014-10-20 19:45:59 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPNTAB' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPNTAB.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPNTAB.TSK ADA -l SAPNTAB.log
    TRACE: 2014-10-20 19:46:00 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPNTAB' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPNTAB.cmd -dbcodepage 4103 -l SAPNTAB.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 19:52:20 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPNTAB' import package is successfully completed.
    TRACE: 2014-10-20 19:52:29 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL0_2' import package is started.
    TRACE: 2014-10-20 19:52:29 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPAPPL0_2' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPAPPL0_2.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPAPPL0_2.TSK ADA -l SAPAPPL0_2.log
    TRACE: 2014-10-20 19:52:30 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPAPPL0_2' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPAPPL0_2.cmd -dbcodepage 4103 -l SAPAPPL0_2.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 20:24:57 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC_2' import package is successfully completed.
    TRACE: 2014-10-20 20:25:00 com.sap.inst.migmon.LoadTask run
    Loading of 'DYNPSOURCE' import package is started.
    TRACE: 2014-10-20 20:25:00 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'DYNPSOURCE' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\DYNPSOURCE.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" DYNPSOURCE.TSK ADA -l DYNPSOURCE.log
    TRACE: 2014-10-20 20:25:00 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'DYNPSOURCE' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i DYNPSOURCE.cmd -dbcodepage 4103 -l DYNPSOURCE.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 20:56:46 com.sap.inst.migmon.LoadTask run
    Loading of 'DYNPSOURCE' import package is successfully completed.
    TRACE: 2014-10-20 20:57:02 com.sap.inst.migmon.LoadTask run
    Loading of 'D010TAB' import package is started.
    TRACE: 2014-10-20 20:57:03 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'D010TAB' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\D010TAB.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" D010TAB.TSK ADA -l D010TAB.log
    TRACE: 2014-10-20 20:57:44 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'D010TAB' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i D010TAB.cmd -dbcodepage 4103 -l D010TAB.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 21:07:27 com.sap.inst.migmon.LoadTask run
    Loading of 'REPOSRC' import package is successfully completed.
    TRACE: 2014-10-20 21:07:42 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSRC' import package is started.
    TRACE: 2014-10-20 21:07:42 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPSSRC' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPSSRC.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPSSRC.TSK ADA -l SAPSSRC.log
    TRACE: 2014-10-20 21:07:42 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSSRC' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSSRC.cmd -dbcodepage 4103 -l SAPSSRC.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 21:14:49 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSRC' import package is successfully completed.
    TRACE: 2014-10-20 21:15:18 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSDIC' import package is started.
    TRACE: 2014-10-20 21:15:18 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPSDIC' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPSDIC.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPSDIC.TSK ADA -l SAPSDIC.log
    TRACE: 2014-10-20 21:15:18 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSDIC' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSDIC.cmd -dbcodepage 4103 -l SAPSDIC.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 21:16:48 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSDIC' import package is successfully completed.
    TRACE: 2014-10-20 21:17:18 com.sap.inst.migmon.LoadTask run
    Loading of 'ATAB' import package is started.
    TRACE: 2014-10-20 21:17:18 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'ATAB' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\ATAB.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" ATAB.TSK ADA -l ATAB.log
    TRACE: 2014-10-20 21:17:18 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'ATAB' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i ATAB.cmd -dbcodepage 4103 -l ATAB.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 21:43:11 com.sap.inst.migmon.LoadTask run
    Loading of 'ATAB' import package is successfully completed.
    TRACE: 2014-10-20 21:43:24 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC_4' import package is started.
    TRACE: 2014-10-20 21:43:24 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPSSEXC_4' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPSSEXC_4.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPSSEXC_4.TSK ADA -l SAPSSEXC_4.log
    TRACE: 2014-10-20 21:43:25 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSSEXC_4' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSSEXC_4.cmd -dbcodepage 4103 -l SAPSSEXC_4.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 21:44:41 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSEXC_4' import package is successfully completed.
    TRACE: 2014-10-20 21:44:54 com.sap.inst.migmon.LoadTask run
    Loading of 'OCSCMPLOBJ' import package is started.
    TRACE: 2014-10-20 21:44:54 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'OCSCMPLOBJ' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\OCSCMPLOBJ.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" OCSCMPLOBJ.TSK ADA -l OCSCMPLOBJ.log
    TRACE: 2014-10-20 21:44:54 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'OCSCMPLOBJ' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i OCSCMPLOBJ.cmd -dbcodepage 4103 -l OCSCMPLOBJ.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 21:45:35 com.sap.inst.migmon.LoadTask run
    Loading of 'OCSCMPLOBJ' import package is successfully completed.
    TRACE: 2014-10-20 21:45:54 com.sap.inst.migmon.LoadTask run
    Loading of 'SEOSUBCOTX' import package is started.
    TRACE: 2014-10-20 21:45:54 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SEOSUBCOTX' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SEOSUBCOTX.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SEOSUBCOTX.TSK ADA -l SEOSUBCOTX.log
    TRACE: 2014-10-20 21:45:54 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SEOSUBCOTX' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SEOSUBCOTX.cmd -dbcodepage 4103 -l SEOSUBCOTX.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 21:46:29 com.sap.inst.migmon.LoadTask run
    Loading of 'SEOSUBCOTX' import package is successfully completed.
    TRACE: 2014-10-20 21:46:54 com.sap.inst.migmon.LoadTask run
    Loading of 'D010INC' import package is started.
    TRACE: 2014-10-20 21:46:54 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'D010INC' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\D010INC.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" D010INC.TSK ADA -l D010INC.log
    TRACE: 2014-10-20 21:46:54 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'D010INC' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i D010INC.cmd -dbcodepage 4103 -l D010INC.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 23:35:43 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL0_2' import package is successfully completed.
    TRACE: 2014-10-20 23:35:57 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSLOAD' import package is started.
    TRACE: 2014-10-20 23:35:57 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPSLOAD' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPSLOAD.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPSLOAD.TSK ADA -l SAPSLOAD.log
    TRACE: 2014-10-20 23:35:57 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSLOAD' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSLOAD.cmd -dbcodepage 4103 -l SAPSLOAD.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 23:36:07 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSLOAD' import package is successfully completed.
    TRACE: 2014-10-20 23:36:27 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSLEXC' import package is started.
    TRACE: 2014-10-20 23:36:27 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPSLEXC' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPSLEXC.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPSLEXC.TSK ADA -l SAPSLEXC.log
    TRACE: 2014-10-20 23:36:27 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSLEXC' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSLEXC.cmd -dbcodepage 4103 -l SAPSLEXC.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-20 23:36:34 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSLEXC' import package is successfully completed.
    TRACE: 2014-10-20 23:36:57 com.sap.inst.migmon.LoadTask run
    Loading of 'WBCROSSGT' import package is started.
    TRACE: 2014-10-20 23:36:57 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'WBCROSSGT' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\WBCROSSGT.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" WBCROSSGT.TSK ADA -l WBCROSSGT.log
    TRACE: 2014-10-20 23:36:57 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'WBCROSSGT' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i WBCROSSGT.cmd -dbcodepage 4103 -l WBCROSSGT.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    ERROR: 2014-10-21 00:00:10 com.sap.inst.migmon.LoadTask run
    Loading of 'D010TAB' import package is interrupted with R3load error.
    Process 'C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i D010TAB.cmd -dbcodepage 4103 -l D010TAB.log -nolog -c 50000 -force_repeat -loadprocedure dbsl' exited with return code 2.
    For mode details see 'D010TAB.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
    TRACE: 2014-10-21 00:00:28 com.sap.inst.migmon.LoadTask run
    Loading of 'WDY_UI_PROPERTY' import package is started.
    TRACE: 2014-10-21 00:00:28 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'WDY_UI_PROPERTY' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\WDY_UI_PROPERTY.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" WDY_UI_PROPERTY.TSK ADA -l WDY_UI_PROPERTY.log
    TRACE: 2014-10-21 00:00:28 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'WDY_UI_PROPERTY' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i WDY_UI_PROPERTY.cmd -dbcodepage 4103 -l WDY_UI_PROPERTY.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-21 00:00:31 com.sap.inst.migmon.LoadTask run
    Loading of 'D010INC' import package is successfully completed.
    TRACE: 2014-10-21 00:00:58 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSPROT' import package is started.
    TRACE: 2014-10-21 00:00:58 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPSPROT' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPSPROT.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPSPROT.TSK ADA -l SAPSPROT.log
    TRACE: 2014-10-21 00:00:58 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSPROT' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSPROT.cmd -dbcodepage 4103 -l SAPSPROT.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-21 00:01:18 com.sap.inst.migmon.LoadTask run
    Loading of 'WDY_UI_PROPERTY' import package is successfully completed.
    TRACE: 2014-10-21 00:01:28 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSDOCU' import package is started.
    TRACE: 2014-10-21 00:01:28 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPSDOCU' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPSDOCU.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPSDOCU.TSK ADA -l SAPSDOCU.log
    TRACE: 2014-10-21 00:01:28 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSDOCU' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPSDOCU.cmd -dbcodepage 4103 -l SAPSDOCU.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-21 00:01:36 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSPROT' import package is successfully completed.
    INFO: 2014-10-21 00:01:43 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSDOCU' import package is successfully completed.
    TRACE: 2014-10-21 00:01:58 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL1_2' import package is started.
    TRACE: 2014-10-21 00:01:58 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPAPPL1_2' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPAPPL1_2.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPAPPL1_2.TSK ADA -l SAPAPPL1_2.log
    TRACE: 2014-10-21 00:01:58 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPPOOL' import package is started.
    TRACE: 2014-10-21 00:01:58 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPPOOL' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPPOOL.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPPOOL.TSK ADA -l SAPPOOL.log
    TRACE: 2014-10-21 00:01:58 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPPOOL' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPPOOL.cmd -dbcodepage 4103 -l SAPPOOL.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    TRACE: 2014-10-21 00:01:58 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPAPPL1_2' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPAPPL1_2.cmd -dbcodepage 4103 -l SAPAPPL1_2.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-21 00:02:00 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPPOOL' import package is successfully completed.
    INFO: 2014-10-21 00:02:23 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPAPPL1_2' import package is successfully completed.
    TRACE: 2014-10-21 00:02:28 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPCLUST' import package is started.
    TRACE: 2014-10-21 00:02:28 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDDIM' import package is started.
    TRACE: 2014-10-21 00:02:28 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPDDIM' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPDDIM.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPDDIM.TSK ADA -l SAPDDIM.log
    TRACE: 2014-10-21 00:02:28 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPCLUST' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPCLUST.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPCLUST.TSK ADA -l SAPCLUST.log
    TRACE: 2014-10-21 00:02:28 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPDDIM' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDDIM.cmd -dbcodepage 4103 -l SAPDDIM.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    TRACE: 2014-10-21 00:02:29 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPCLUST' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPCLUST.cmd -dbcodepage 4103 -l SAPCLUST.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-21 00:02:30 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDDIM' import package is successfully completed.
    INFO: 2014-10-21 00:02:33 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPCLUST' import package is successfully completed.
    TRACE: 2014-10-21 00:03:42 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDFACT' import package is started.
    TRACE: 2014-10-21 00:03:42 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDODS' import package is started.
    TRACE: 2014-10-21 00:03:42 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPDODS' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPDODS.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPDODS.TSK ADA -l SAPDODS.log
    TRACE: 2014-10-21 00:04:43 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPDFACT' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPDFACT.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPDFACT.TSK ADA -l SAPDFACT.log
    TRACE: 2014-10-21 00:04:44 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPDODS' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDODS.cmd -dbcodepage 4103 -l SAPDODS.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    TRACE: 2014-10-21 00:04:44 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPDFACT' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDFACT.cmd -dbcodepage 4103 -l SAPDFACT.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-21 00:04:45 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDFACT' import package is successfully completed.
    INFO: 2014-10-21 00:04:45 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPDODS' import package is successfully completed.
    TRACE: 2014-10-21 00:05:13 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPUSER' import package is started.
    TRACE: 2014-10-21 00:05:13 com.sap.inst.migmon.LoadTask run
    Loading of 'SAP0000' import package is started.
    TRACE: 2014-10-21 00:05:13 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAP0000' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAP0000.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAP0000.TSK ADA -l SAP0000.log -o D
    TRACE: 2014-10-21 00:05:13 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPUSER' import package:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -ctf I "D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\SAPUSER.STR" "C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL" SAPUSER.TSK ADA -l SAPUSER.log
    TRACE: 2014-10-21 00:05:14 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAP0000' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAP0000.cmd -dbcodepage 4103 -l SAP0000.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    TRACE: 2014-10-21 00:05:14 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPUSER' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i SAPUSER.cmd -dbcodepage 4103 -l SAPUSER.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    INFO: 2014-10-21 00:05:14 com.sap.inst.migmon.LoadTask run
    Loading of 'SAP0000' import package is successfully completed.
    INFO: 2014-10-21 00:05:15 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPUSER' import package is successfully completed.
    ERROR: 2014-10-21 00:06:07 com.sap.inst.migmon.LoadTask run
    Loading of 'WBCROSSGT' import package is interrupted with R3load error.
    Process 'C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i WBCROSSGT.cmd -dbcodepage 4103 -l WBCROSSGT.log -nolog -c 50000 -force_repeat -loadprocedure dbsl' exited with return code 2.
    For mode details see 'WBCROSSGT.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-10-21 00:06:13
    Cannot start import of packages with views because not all import packages with tables are loaded successfully.
    WARNING: 2014-10-21 00:06:13
    2 error(s) during processing of packages.
    INFO: 2014-10-21 00:06:13
    Import Monitor is stopped.
    INFO: 2014-10-21 00:54:37
    Import Monitor is started.
    CONFIG: 2014-10-21 00:54:37
    Application options:
    dbCodepage=4103
    dbType=ADA
    extFiles=no
    importDirs=D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1;D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP2;D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP3
    installDir=C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL
    jobNum=3
    loadArgs=-nolog -c 50000 -force_repeat -loadprocedure dbsl
    monitorTimeout=30
    orderBy=
    r3loadExe=C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe
    sapinst=
    trace=all
    tskFiles=yes
    CONFIG: 2014-10-21 00:54:37
    List of packages with table structure: 'SAP0000'.
    CONFIG: 2014-10-21 00:54:37
    List of packages with views: 'SAPVIEW'.
    TRACE: 2014-10-21 00:54:37 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL' template file is started.
    INFO: 2014-10-21 00:54:37 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL' template file is successfully completed.
    Primary key creation: before load.
    Index creation: after load.
    INFO: 2014-10-21 00:54:37
    Data codepage 4103 is determined using TOC file 'D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\ATAB.TOC' for package 'ATAB'.
    TRACE: 2014-10-21 00:54:37 com.sap.inst.migmon.LoadTask run
    Loading of 'D010TAB' import package is started.
    TRACE: 2014-10-21 00:54:37 com.sap.inst.migmon.LoadTask run
    Loading of 'WBCROSSGT' import package is started.
    TRACE: 2014-10-21 00:54:37 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'WBCROSSGT' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i WBCROSSGT.cmd -dbcodepage 4103 -l WBCROSSGT.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    TRACE: 2014-10-21 00:54:37 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'D010TAB' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i D010TAB.cmd -dbcodepage 4103 -l D010TAB.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    ERROR: 2014-10-21 00:54:38 com.sap.inst.migmon.LoadTask run
    Loading of 'WBCROSSGT' import package is interrupted with R3load error.
    Process 'C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i WBCROSSGT.cmd -dbcodepage 4103 -l WBCROSSGT.log -nolog -c 50000 -force_repeat -loadprocedure dbsl' exited with return code 2.
    For mode details see 'WBCROSSGT.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
    ERROR: 2014-10-21 00:54:38 com.sap.inst.migmon.LoadTask run
    Loading of 'D010TAB' import package is interrupted with R3load error.
    Process 'C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i D010TAB.cmd -dbcodepage 4103 -l D010TAB.log -nolog -c 50000 -force_repeat -loadprocedure dbsl' exited with return code 2.
    For mode details see 'D010TAB.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-10-21 00:55:07
    Cannot start import of packages with views because not all import packages with tables are loaded successfully.
    WARNING: 2014-10-21 00:55:07
    2 error(s) during processing of packages.
    INFO: 2014-10-21 00:55:07
    Import Monitor is stopped.
    INFO: 2014-10-21 00:55:17
    Import Monitor is started.
    CONFIG: 2014-10-21 00:55:17
    Application options:
    dbCodepage=4103
    dbType=ADA
    extFiles=no
    importDirs=D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1;D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP2;D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP3
    installDir=C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL
    jobNum=3
    loadArgs=-nolog -c 50000 -force_repeat -loadprocedure dbsl
    monitorTimeout=30
    orderBy=
    r3loadExe=C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe
    sapinst=
    trace=all
    tskFiles=yes
    CONFIG: 2014-10-21 00:55:17
    List of packages with table structure: 'SAP0000'.
    CONFIG: 2014-10-21 00:55:17
    List of packages with views: 'SAPVIEW'.
    TRACE: 2014-10-21 00:55:17 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL' template file is started.
    INFO: 2014-10-21 00:55:17 com.sap.inst.migmon.imp.ImportStandardTask preCreate
    Parse of 'C:\Program Files\sapinst_instdir\NW702\AS-ABAP\ADA\CENTRAL\DDLADA.TPL' template file is successfully completed.
    Primary key creation: before load.
    Index creation: after load.
    INFO: 2014-10-21 00:55:17
    Data codepage 4103 is determined using TOC file 'D:\For Abap\NWABAPTRIAL70211_64_GW204\SAP_NetWeaver_702e_Export\DATA_UNITS\EXP1\DATA\ATAB.TOC' for package 'ATAB'.
    TRACE: 2014-10-21 00:55:17 com.sap.inst.migmon.LoadTask run
    Loading of 'D010TAB' import package is started.
    TRACE: 2014-10-21 00:55:17 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'D010TAB' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i D010TAB.cmd -dbcodepage 4103 -l D010TAB.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    TRACE: 2014-10-21 00:55:17 com.sap.inst.migmon.LoadTask run
    Loading of 'WBCROSSGT' import package is started.
    TRACE: 2014-10-21 00:55:17 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'WBCROSSGT' import package into database:
    C:\usr\sap\NSP\SYS\exe\uc\NTAMD64\R3load.exe -i WBCROSSGT.cmd -dbcodepage 4103 -l WBCROSSGT.log -nolog -c 50000 -force_repeat -loadprocedure dbsl
    ERROR: 2014-10-21 00:55:17 com.sap.inst.mig

Maybe you are looking for

  • Writing files to disk.....

    Hi, any ideas why this code to read in an array of bytes (a file) from a server and then write the file to a user chosen directory does not work?? Should I be using a fileObject and not just a fileoutputstream?? I am using an example from a book that

  • Works on Windows 7 & 8?

    Hey Adobe, PC's with windows 7 & 8 can still use the latest version of Adobe Story? $40 per PC? How long does it take to train someone in Adobe Story? Free training? 24hr free support from Adobe? UK user data stored in US 'Cloud'? Cheers:0) Wanda

  • PasswordCheckSyntax attribute

    I am trying to find out something more about passwordCheckSyntax (Check Password Syntax) attribute. This is the explanation that I've found in docs: The password syntax checking mechanism checks that the password meets the password minimum length req

  • Remove 'master slide' from individual slide?

    Is there a way to remove the master slide from an individual slide but keep it present on the remaining ones? I am using Keynote 6.1 Thanks

  • Problem With HR_PERSON_API.UPDATE_PERSON

    Hi All, I am trying to update the PER_INFORMATION2 and PER_INFORMATION3 fields in PER_ALL_PEOPLE_F and am getting the following error when trying to use the HR_PERSON_API.UPDATE_PERSON Api... Error report: ORA-20001: The primary key specified is inva