Install NetWeaver CE 7.1 on Windows Server 2003 32bit, Oracle database

Hi,
It is possible install NW CE 7.1 for Oracle on Windows Server 2003 32 bit ?
I have installed NW 2004s on Windows Server 2003 platform, and I need install CE 7.1 and then ESR.
I have downloaded CE and ESR 7.1 installs from "SAP Installations & Upgrades" location (DVD number 51033843), but it is only 64 bit version.
Thank you
BB

Yes - because successor releases of Netweaver 7.0 are only available as 64bit. 32bit platfomrs are no more available.
Markus

Similar Messages

  • Install ID CS4 Desktop version in Windows Server 2003

    Is it possible to install Indesign CS4 Desktop Version on Windows Server 2003.
    When i tried to install it was showing Warning with the message
         System requirements not met.
    Regards,
    Suresh

    It can be installed.

  • Out of memory using Windows Server 2003 and Oracle 9.2.0.3

    Hi,
    I just installed both Windows Server 2003 and Oracle 9.2.0.3. The server I am using has 4 gigabytes of memory installed, and windows shows that to be the actual physical memory on the server. The paging file is 8 gigabytes for a total of 12 gigabytes of virtual memory.
    Using the Oracle Database Configuration Assistant, I create a new database using default values. After verifying the installation worked OK (database started, queries ran), I attempted to change some of the memory parameters and was able to start the database using about 1.4 gigabytes of total SGA, with the O/S using about .3 gigabytes for a total of 1.7 gigabytes. I then attempted to change the buffer cache + 1 gigabyte for a total of 2 gigabytes. Now the database will not start and I get an out of memory error ora-27102 with an additional O/S memory error of "O/S Error: (OS 8) Not enough storage is available to process this command".
    So, I have two problems:
    1) With 4 gigabytes installed, and the O/S using only about 300 megabytes, why isn't Oracle able to take advantage of the memory on this machine past the 1.7 gigabytes (as reported by Windows task manager).
    2) How do I change the spfile memory parameters so the database will start using spfile? I can start the database pointing to a pfile with lesser memory parameters, but I don't know how to effect change on the spfile, since I cannot start with the spfile.
    Both these technologies (9.2.0.3 and Server 2003) are new to me, so any insight would be appreciated!
    HERE ARE THE SPFILE PARAMETERS THAT WORKED:
    SGA (M)
    Shared Pool=104
    Buffer Cache=960 ***
    Large Pool=0
    Java Pool=64
    Total SGA=1128
    SGA Max Size=1321
    Aggregate PGA Target=1500
    Current PGA Allocated=22868KB
    WINDOWS MEMORY INFO FROM TASK MANAGER SHOW:
    PF Usage=1.66GB
    Physical Memory (K)
    Total=4062704
    Available=3203460
    System Cache=2499096
    Commit Charge (K)
    Total=1748184
    Limit=12288628
    Peak=1925276
    *** When I change this to 2048 the database did not start.
    Thank you.

    CREATE SPFILE
    Purpose
    Use the CREATE SPFILE statement to create a server parameter file from a client-side initialization parameter file. Server parameter files are binary files that exist only on the server and are called from client locations to start up the database.
    Server parameter files let you make persistent changes to individual parameters. When you use a server parameter file, you can specify in an ALTER SYSTEM SET parameter statement that the new parameter value should be persistent. This means that the new value applies not only in the current instance, but also to any instances that are started up subsequently. Traditional client-side parameter files do not let you make persistent changes to parameter values. Because they are located on the server, these files allow for automatic database tuning by Oracle and for backup by Recovery Manager (RMAN).
    To use a server parameter file when starting up the database, you must create it from a traditional text initialization parameter file using the CREATE SPFILE statement.
    All instances in an Real Application Clusters environment must use the same server parameter file. However, when otherwise permitted, individual instances can have different settings of the same parameter within this one file. Instance-specific parameter definitions are specified as SID.parameter = value, where SID is the instance identifier.
    The method of starting up the database with a server parameter file depends on whether you create a default or nondefault server parameter file. Please refer to "Creating a Server Parameter File: Examples" for examples of how to use server parameter files.
    See Also:
    CREATE PFILE for information on creating a regular text parameter file from a binary server parameter file
    Oracle9i Database Administrator's Guide for information on pre-Oracle9i initialization parameter files and Oracle9i server parameter files
    Oracle9i Real Application Clusters Administration for information on using server parameter files in a Real Application Clusters environment
    Prerequisites
    You must have the SYSDBA or the SYSOPER system privilege to execute this statement. You can execute this statement before or after instance startup. However, if you have already started an instance using spfile_name, you cannot specify the same spfile_name in this statement.
    Syntax
    create_spfile::=
    Text description of create_spfile
    Semantics
    spfile_name
    This clause lets you specify a name for the server parameter file you are creating.
    If you do not specify spfile_name, Oracle uses the platform-specific default server parameter filename. If spfile_name already exists on the server, this statement will overwrite it. When using a default server parameter file, you start up the database without referring to the file by name.
    If you do specify spfile_name, you are creating a nondefault server parameter file. In this case, to start up the database, you must first create a single-line traditional parameter file that points to the server parameter file, and then name the single-line file in your STARTUP command.
    See Also:
    "Creating a Server Parameter File: Examples" for information on starting up the database with default and nondefault server parameter files
    Oracle9i Database Administrator's Guide for Windows (or other appropriate operating system specific documentation) for default parameter file names
    pfile_name
    Specify the traditional initialization parameter file from which you want to create a server parameter file.
    If you specify pfile_name, the parameter file must reside on the server. If it does not reside in the default directory for parameter files on your operating system, you must specify the full path.
    If you do not specify pfile_name, Oracle looks in the default directory for parameter files on your operating system for the default parameter filename, and uses that file. If that file does not exist in the expected directory, Oracle returns an error.
    Note:
    In a Real Application Clusters environment, you must first combine all instance parameter files into one file before specifying it in this statement to create a server parameter file. For information on accomplishing this step, see Oracle9i Real Application Clusters Setup and Configuration.
    Examples
    Creating a Server Parameter File: Examples
    The following example creates a default server parameter file from a client initialization parameter file named t_init1.ora:
    CREATE SPFILE
    FROM PFILE = '$ORACLE_HOME/work/t_init1.ora';
    Note:
    Typically you will need to specify the full path and filename for parameter files on your operating system. Please refer to your Oracle operating system documentation for path information.
    When you create a default server parameter file, you subsequently start up the database using that server parameter file by using the SQL*Plus command STARTUP without the PFILE parameter, as follows:
    STARTUP
    The following example creates a nondefault server parameter file s_params.ora from a client initialization file named t_init1.ora:
    CREATE SPFILE = 's_params.ora'
    FROM PFILE = '$ORACLE_HOME/work/t_init1.ora';
    When you create a nondefault server parameter file, you subsequently start up the database by first creating a traditional parameter file containing the following single line:
    spfile = 's_params.ora'
    The name of this parameter file must comply with the naming conventions of your operating system. You then use the single-line parameter file in the STARTUP command. The following example shows how to start up the database, assuming that the single-line parameter file is named new_param.ora:
    STARTUP PFILE=new_param.ora
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_616a.htm#SQLRF01315
    Joel P�rez

  • Acrobat 9 pro support windows server 2003 32bit?

    in the acrobat 9 pro readme file,I see the system requiement:
    Windows Server® 2003 (with Service Pack 2 for 64-bit);
    my question is that does acrobat 9 pro support windows server 2003 32 bit?
    I have install it at windows server 2003 32bit,
    but when i open it, a message box
    "Licensing for this product has stopped working"
    i have try the solution in kb405970, and can not resolve it.
    so manybe really it doesn't support windows server 2003 32 bit?

    John makes some very good points but I would like to clarify one thing from his post: you are planning three migrations:
    1. From 32bit -> 64bit
    2. From Windows to Linux
    3. From Oracle 10gR2 to 11gR2
    The second of these is the one most liekly to give you grief. You certainly should not attempt to combine it with a database upgrade. Either move the database to RHEL and then upgrade it, or upgrade it on Windows and then move it to the new server.
    Of these, the first is the least controversial. So it's a nice point whether it is worth upgrading from Windows 32bit to Windows 64bit prior to moving to Linux.
    Cheers, APC

  • We're running Windows server 2003 32bit and want to migrate to Windows server 2012R2 64bit, can someone provide a step by step procedure on how to migrate instances on ADAM to AD LDS?

    I have no experience in dealing with servers, but my senior has asked me to investigate on how to migrate instances on ADAM (windows server 2003 32bit) to AD LDS (Windows server 2012R2 64 bit) as in place upgrade is not an option as we're running a 32bit
    Server and want to migrate to a 64bit Server. can someone please give me a Walkthrough on how to do this.
    Thanks in advance.

    Hi,
    it'd be of great help if you could give me a step by step process of replication.
    There is no step-by-step article/guide of replication process, replication between AD LDS instances of the same configuration set is an automatic process.
    All we need to make sure is to create a replica of the existing instance, and there is no network/security obstacle preventing the replication.
    Please note that we need to install AD LDS from Server manager on Windows Server 2012 and 2012 R2.
    More information for you:
    Understanding AD LDS Replication and Configuration Sets
    http://technet.microsoft.com/en-us/library/cc770465.aspx
    Best Regards,
    Amy

  • Migrate oracle 10.2.0.5.0 enterprise on windows server 2003 32bit to Linux

    Hello,
    I am trying to find any white paper regarding the benefits of migrating oracle database from windows server 2003 32bit
    to RedHat linux server 64bit.
    The current db version on windows is 10.2.0.5.0
    The new version on linux will be 11.2.0.3.0
    If anyone crossed such a white paper describing the pros & cons for such a migration..
    Thanks alot.
    Edited by: user7320646 on Jan 9, 2013 5:45 AM

    John makes some very good points but I would like to clarify one thing from his post: you are planning three migrations:
    1. From 32bit -> 64bit
    2. From Windows to Linux
    3. From Oracle 10gR2 to 11gR2
    The second of these is the one most liekly to give you grief. You certainly should not attempt to combine it with a database upgrade. Either move the database to RHEL and then upgrade it, or upgrade it on Windows and then move it to the new server.
    Of these, the first is the least controversial. So it's a nice point whether it is worth upgrading from Windows 32bit to Windows 64bit prior to moving to Linux.
    Cheers, APC

  • Acrobat 9 does not install after Microsoft ODBC Setup on windows server 2003

    I recently downloaded Acrobat Reader 9 from Adobe website. The package was consisted of one file AdbeRdr90_en_US.exe with an appx. size of 33.4MB. When i double click this file Microsoft ODBC Setup is started instead of Adobe Acrobat Reader 9 setup. I clicked next and in the end receive ODBC has been successfully installed and after that Acrobat Reader 9 setup is never started. Tried several times but the same thing and unable to install the reader on this windwos server 2003+sp1.
    Can anybody help me to resolve this problem?
    ishqi92

    Probably need to ask in the Reader forum, this is not it. The Reader forum link is listed at the top of this forum.

  • Fresh Install 10.1.3.4 - Windows Server 2003 x64; - Oracle Client question

    Hi,
    as preparation for a server migration I have been going through all of the steps to perform a fresh install of OBIEE.
    I have worked through the 'Quick Installation Guide', but referring to the full Install and Configuration Guide, but I have come up to an area where I need clarification please....
    After using the SAACCT.Oracle.sql script I am now at the step; -
    "Using the Oracle Net Configuration tool,create an Oracle Service to the current S_NQ_SCHED database....."
    At which point I realised - following through the Quick Installation guide to the letter - I had not installed the Oracle Client Software....
    My questions are; -
    1. Is the Oracle Client a pre-req which is an 'unwritten' requirement for install of OBIEE - if not how do you create an oracle service to the S_NQ_SCHED database?
    2. The full guide says 'IF' (hence the reason I ask the above) you install an Oracle Client alongside the OBIEE software then you must do it first as it can change java versions - I haven't - do I have to scrap my entire install or is there a 'fix' for putting the client on after the event
    3. The guide points me at the 'System Requirements and Supported Platforms' document to know which clients are compatible with OBIEE - I can see nothing in the guide on this - can anyone advise please?
    thanks for your help,
    Robert.

    Hi Paul,
    I am not seeing the network/tools combination of folders anywhere, nor do I have shortcuts that you describe, is the client definitely part and parcel of the 10.1.3.4 install - can you give me one specific executable to search for - preferably the Net Configuration Assistant?
    thanks again,
    Robert.

  • Windows Server 2003 32bit in-place upgrade to Server 2008 32bit

    I'm attempting an in-place upgrade from Server 2003 to Server 2008.  The upgrade will proceed through 3 reboots until it reaches 77% complete and then just stops.  I'm assuming that there is a problem with a driver, but I have no way to be sure
    since there is never any error message.  If I hard-reboot it will roll back to the original OS.  Has anyone else experienced this?  Any ideas?

    I'd check the log file for the hang/rollback reason.
    http://support.microsoft.com/kb/927521
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Install Problem ECC 5.0\Windows server 2003(SP2)\oracle 9.2.1.0

    Dear Friends
    I am Saikumar from Hyderabad
    I hasve been trying to install ecc 5.0 on my System but it failed more than 4 times now.
    My PC Config
    Intel Desktopboard S975XBX 2
    8GB Ram
    500 GB HDD
    I have done all the prerequisites like setting the swap Space to 1GB + 3 * RAM & Updated the Hosts File
    Installed Java & Updated the envirment variables
    I have Installed Oracle 9.2.1.0 & Updated it with the patch to 9.2.6.0
    I am able to Install Central Instance successfully
    While Installing Database Instance,It is getting stopped & Terminated during the process of "Creating Database" In the bottom it is showing Extracting SAP Oracle file 12
    At that point it is getting terminated everytime.
    I am not getting what the problem is????
    Pls help me
    Thank you
    Saikumar

    *This is the sapinst.log file*
    INFO 2008-07-03 00:39:18
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO 2008-07-03 00:39:18
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO 2008-07-03 00:39:18
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\q0w9e9r8t7.1.xml.
    INFO 2008-07-03 00:39:18
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/keydb.xml to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/keydb.1.xml.
    INFO 2008-07-03 00:39:18
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/keydb.xml to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/keydb.1.xml.
    INFO 2008-07-03 00:39:18
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\keydb.1.xml.
    INFO 2008-07-03 00:39:18
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\change.log.
    INFO 2008-07-03 00:39:18
    Output of change 'user' '/install' is written to the logfile change.log.
    WARNING 2008-07-03 00:39:18
    Execution of the command "change 'user' '/install'" finished with return code 1. Output:
    Install mode does not apply to a Terminal server configured for remote administration.
    INFO 2008-07-03 00:39:19
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'SAPECC\Administrator' on host '.'.
    PHASE 2008-07-03 00:39:19
    Prepare the installation program.
    INFO 2008-07-03 00:39:23
    Installation start: Thursday, 03 July 2008, 00:39:17; installation directory: E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB; product to be installed: SAP ERP 2004> SAP ECC 5.0 ABAP System> non-Unicode> Install a Database Instance
    INFO 2008-07-03 00:40:37
    Host operation t_HostInfo_SHARED processed successfully.
    INFO 2008-07-03 00:41:31
    The 'saploc' share exists in directory 'F:\usr\sap'. Choosing drive F: as the SAP system drive.
    INFO[E] 2008-07-03 00:41:47
    Unable to get value for environment variable SAPINST_ORA_ALLOW_ASIAN_CHARSETS.
    INFO[E] 2008-07-03 00:43:08
    Account group="sapecc\SAP_LDAP" does not exist. <#1>
    INFO[E] 2008-07-03 00:43:44
    Account group="sapecc\dbeccctl" does not exist. <#1>
    INFO 2008-07-03 00:45:30
    Copying file G:/EXPORT1/DB/ORA/DBSIZE.XML to: DBSIZE.XML.
    INFO 2008-07-03 00:45:30
    Copying file G:/EXPORT1/DB/ORA/DBSIZE.XML to: DBSIZE.XML.
    INFO 2008-07-03 00:45:30
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\DBSIZE.XML.
    INFO 2008-07-03 00:45:30
    File system node G:\EXPORT1/DB/ORA/DBSIZE.XML with type NODE to DBSIZE.XML copied successfully.
    INFO 2008-07-03 00:45:30
    All file system node operations of table tORA_filecopy processed successfully.
    INFO 2008-07-03 00:45:33
    Copying file G:/EXPORT1/DB/DDLORA.TPL to: DDLORA.TPL.
    INFO 2008-07-03 00:45:33
    Copying file G:/EXPORT1/DB/DDLORA.TPL to: DDLORA.TPL.
    INFO 2008-07-03 00:45:33
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\DDLORA.TPL.
    INFO 2008-07-03 00:45:34
    File system node G:\EXPORT1/DB/DDLORA.TPL with type NODE to DDLORA.TPL copied successfully.
    INFO 2008-07-03 00:45:34
    All file system node operations of table tORA_filecopy processed successfully.
    INFO 2008-07-03 00:45:47
    Moving file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/DDLORA.TPL to: orig_ddl_ora_tmp.tpl.
    INFO 2008-07-03 00:45:47
    Moving file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/changed_ddl_ora_tmp.tpl to: DDLORA.TPL.
    INFO 2008-07-03 00:45:47
    Removing file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/orig_ddl_ora_tmp.tpl.
    INFO 2008-07-03 00:47:22
    Package table created
    PHASE 2008-07-03 00:52:40
    SAP Web Application Server
    PHASE 2008-07-03 00:52:40
    Request common parameters of SAP system
    PHASE 2008-07-03 00:52:40
    Create accounts
    INFO 2008-07-03 00:52:40
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/product.xml to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/product.1.xml.
    INFO 2008-07-03 00:52:40
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/product.xml to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/product.1.xml.
    INFO 2008-07-03 00:52:40
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\product.1.xml.
    INFO 2008-07-03 00:52:40
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/product.xml to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/product.2.xml.
    INFO 2008-07-03 00:52:40
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/product.xml to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/product.2.xml.
    INFO 2008-07-03 00:52:40
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\product.2.xml.
    INFO 2008-07-03 00:52:40
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/oradbpar.xml to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/oradbpar.1.xml.
    INFO 2008-07-03 00:52:40
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/oradbpar.xml to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/oradbpar.1.xml.
    INFO 2008-07-03 00:52:40
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\oradbpar.1.xml.
    INFO 2008-07-03 00:52:40
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/DBSIZE.XML to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/DBSIZE.1.XML.
    INFO 2008-07-03 00:52:40
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/DBSIZE.XML to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/DBSIZE.1.XML.
    INFO 2008-07-03 00:52:40
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\DBSIZE.1.XML.
    INFO 2008-07-03 00:52:40
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/exportcds.xml to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/exportcds.1.xml.
    INFO 2008-07-03 00:52:40
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/exportcds.xml to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/exportcds.1.xml.
    INFO 2008-07-03 00:52:40
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\exportcds.1.xml.
    PHASE 2008-07-03 00:53:44
    Request operating system user information
    PHASE 2008-07-03 00:53:44
    Request operating system user information
    PHASE 2008-07-03 00:53:44
    Request operating system user information
    PHASE 2008-07-03 00:53:45
    Request operating system user information
    PHASE 2008-07-03 00:53:45
    Request operating system user information
    PHASE 2008-07-03 00:53:45
    Request operating system user information
    PHASE 2008-07-03 00:53:46
    Request operating system user information
    PHASE 2008-07-03 00:53:46
    Request operating system user information
    PHASE 2008-07-03 00:53:47
    Request operating system user information
    PHASE 2008-07-03 00:53:47
    Request operating system user information
    PHASE 2008-07-03 00:53:47
    Request operating system user information
    PHASE 2008-07-03 00:53:47
    Request operating system user information
    PHASE 2008-07-03 00:53:47
    Request operating system user information
    PHASE 2008-07-03 00:53:47
    Request operating system user information
    PHASE 2008-07-03 00:53:47
    Request operating system user information
    PHASE 2008-07-03 00:53:47
    Request operating system user information
    PHASE 2008-07-03 00:53:47
    Request operating system user information
    PHASE 2008-07-03 00:53:47
    Request operating system user information
    INFO 2008-07-03 00:53:48
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-4201031851-3450626453-3816366955-500' on host 'sapecc'.
    INFO 2008-07-03 00:53:49
    Successfully added privileges 'SeServiceLogonRight SeNetworkLogonRight SeDenyInteractiveLogonRight SeDenyRemoteInteractiveLogonRight' to account 'sapecc\SAPServiceECC' on host 'sapecc'.
    INFO 2008-07-03 00:53:49
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'sapecc\eccadm' on host 'sapecc'.
    INFO 2008-07-03 00:53:49
    All 'tNT_RegistryEntries' table rows evaluated.
    INFO 2008-07-03 00:53:51
    Switched to user: eccadm.
    INFO 2008-07-03 00:53:51
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:53:52
    Switched to user: eccadm.
    INFO 2008-07-03 00:53:52
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:53:52
    Switched to user: eccadm.
    INFO 2008-07-03 00:53:53
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:53:53
    Switched to user: eccadm.
    INFO 2008-07-03 00:53:54
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:53:54
    Switched to user: eccadm.
    INFO 2008-07-03 00:53:55
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:53:55
    Switched to user: eccadm.
    INFO 2008-07-03 00:53:56
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:53:57
    Switched to user: eccadm.
    INFO 2008-07-03 00:53:57
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:53:58
    Switched to user: eccadm.
    INFO 2008-07-03 00:53:58
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:53:59
    Switched to user: eccadm.
    INFO 2008-07-03 00:53:59
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:54:00
    Switched to user: eccadm.
    INFO 2008-07-03 00:54:00
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:54:01
    Switched to user: eccadm.
    INFO 2008-07-03 00:54:01
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:54:02
    Switched to user: eccadm.
    INFO 2008-07-03 00:54:02
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:54:03
    Switched to user: eccadm.
    INFO 2008-07-03 00:54:03
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-07-03 00:54:04
    Switched to user: eccadm.
    INFO 2008-07-03 00:54:04
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    PHASE 2008-07-03 00:54:04
    Adapt file system
    PHASE 2008-07-03 00:54:05
    Prepare check/adapt SAP instance file system
    INFO 2008-07-03 00:54:06
    File system node F:\usr\sap exists.
    INFO 2008-07-03 00:54:06
    All file system node operations of table t_SAPComponent_Filesystem_Action_SHARED processed successfully.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap/ECC exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap/tmp exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/tmp exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/EPS exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/EPS/in exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/EPS/out exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/EPS/log exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/bin exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/buffer exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/cofiles exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/data exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/etc exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/log exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    File system node F:\usr\sap\trans/sapnames exists already. Nothing to do.
    INFO 2008-07-03 00:54:07
    All file system node operations of table t_SAPComponent_Filesystem_Action_SHARED processed successfully.
    INFO 2008-07-03 00:54:08
    All file system node operations of table t_SAPComponent_Filesystem_Action_SHARED processed successfully.
    INFO 2008-07-03 00:54:08
    All NT shares while processing the table 'tNT_SHARE' created successfully.
    PHASE 2008-07-03 00:54:09
    Extract archives
    INFO 2008-07-03 00:54:09
    All file system node operations of table t_SAPComponent_Archives_FORMS_SHARED processed successfully.
    PHASE 2008-07-03 00:54:10
    Extract SAP System kernel archives
    INFO 2008-07-03 00:54:12
    Copying file F:/usr/sap/ECC/SYS/exe/run/rfcexec.sec to: /rfcexec.sec.
    INFO 2008-07-03 00:54:12
    Copying file F:/usr/sap/ECC/SYS/exe/run/rfcexec.sec to: /rfcexec.sec.
    INFO 2008-07-03 00:54:12
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\SAPMMC.SAR.log.
    INFO 2008-07-03 00:54:13
    E:/DOCUME1/ADMINI1/LOCALS~1/Temp/sapinst_exe.3268.1215025719\sapcar.exe -xvgf G:/erp2000/IM1/NT/I386/MMC/SAPMMC.SAR, -R E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB succeeded. (See output in './SAPMMC.SAR.log'.)
    INFO 2008-07-03 00:54:13
    While copying node E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/sapmmc.dll to E:\WINDOWS\system32/sapmmc.dll, source is not newer than the target. Nothing to do.
    INFO 2008-07-03 00:54:13
    While copying node E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/sapmmcada.dll to E:\WINDOWS\system32/sapmmcada.dll, source is not newer than the target. Nothing to do.
    INFO 2008-07-03 00:54:13
    While copying node E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/sapmmcdb6.dll to E:\WINDOWS\system32/sapmmcdb6.dll, source is not newer than the target. Nothing to do.
    INFO 2008-07-03 00:54:13
    While copying node E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/sapmmcinf.dll to E:\WINDOWS\system32/sapmmcinf.dll, source is not newer than the target. Nothing to do.
    INFO 2008-07-03 00:54:13
    While copying node E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/sapmmcms.dll to E:\WINDOWS\system32/sapmmcms.dll, source is not newer than the target. Nothing to do.
    INFO 2008-07-03 00:54:13
    All file system node operations of table t_SAPComponent_Archives_Copy_SHARED processed successfully.
    INFO 2008-07-03 00:54:16
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\DBATOOLS.SAR.log.
    INFO 2008-07-03 00:54:16
    E:/DOCUME1/ADMINI1/LOCALS~1/Temp/sapinst_exe.3268.1215025719\sapcar.exe -xvgf G:/erp2000/IM1/NT\I386\DBATOOLS.SAR, -R F:\usr\sap\ECC\SYS\exe\run succeeded. (See output in './DBATOOLS.SAR.log'.)
    INFO 2008-07-03 00:54:17
    All 'tNT_RegistryEntries' table rows evaluated.
    INFO 2008-07-03 00:54:18
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    PHASE 2008-07-03 00:54:18
    Creating service ports
    PHASE 2008-07-03 00:54:18
    Generate instance profiles
    PHASE 2008-07-03 00:54:18
    Create versions of default profile, instance profile and start profile
    INFO 2008-07-03 00:54:19
    All file system node operations of table t_SAPComponent_Profiles_FORMS_SHARED processed successfully.
    INFO 2008-07-03 00:54:20
    Adapt operation t_SAPComponent_Profiles_SHARED processed successfully.
    INFO 2008-07-03 00:54:22
    Copying file F:/oracle/ecc92/network/admin/listener.ora to: F:/oracle/ecc92/network/admin/listener.1.ora.
    INFO 2008-07-03 00:54:22
    Copying file F:/oracle/ecc92/network/admin/listener.ora to: F:/oracle/ecc92/network/admin/listener.1.ora.
    INFO 2008-07-03 00:54:22
    Creating file F:\oracle\ecc92\network\admin\listener.1.ora.
    INFO 2008-07-03 00:54:22
    Removing file F:/oracle/ecc92/network/admin/listener.ora.
    INFO 2008-07-03 00:54:22
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\lsnrctl.log.
    INFO 2008-07-03 00:54:22
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:54:22
    Output of F:\oracle\ecc92/bin/lsnrctl 'stop' 'LISTENER' is written to the logfile lsnrctl.log.
    INFO 2008-07-03 00:54:22
    Execution of the command "F:\oracle\ecc92/bin/lsnrctl 'stop' 'LISTENER'" finished with return code 0. Output:
    LSNRCTL for 32-bit Windows: Version 9.2.0.8.0 - Production on 03-JUL-2008 00:54:22
    Copyright (c) 1991, 2006, Oracle Corporation.  All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(PORT=1521))
    The command completed successfully
    INFO 2008-07-03 00:54:22
    Creating file F:\oracle\ecc92\network\admin\listener.ora.
    INFO 2008-07-03 00:54:22
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\tnsnames.tpl.
    INFO 2008-07-03 00:54:22
    Copying file F:/oracle/ecc92/network/admin/tnsnames.ora to: F:/oracle/ecc92/network/admin/tnsnames.1.ora.
    INFO 2008-07-03 00:54:22
    Copying file F:/oracle/ecc92/network/admin/tnsnames.ora to: F:/oracle/ecc92/network/admin/tnsnames.1.ora.
    INFO 2008-07-03 00:54:22
    Creating file F:\oracle\ecc92\network\admin\tnsnames.1.ora.
    INFO 2008-07-03 00:54:22
    Moving file F:/oracle/ecc92/network/admin/tnsnames.ora to: \s394..2.
    INFO 2008-07-03 00:54:22
    Moving file E:/s394. to: F:\oracle\ecc92/network/admin/tnsnames.ora.
    INFO 2008-07-03 00:54:22
    Removing file E:/s394..2.
    INFO 2008-07-03 00:54:22
    Copying file F:/oracle/ecc92/network/admin/sqlnet.ora to: F:/oracle/ecc92/network/admin/sqlnet.1.ora.
    INFO 2008-07-03 00:54:22
    Copying file F:/oracle/ecc92/network/admin/sqlnet.ora to: F:/oracle/ecc92/network/admin/sqlnet.1.ora.
    INFO 2008-07-03 00:54:22
    Creating file F:\oracle\ecc92\network\admin\sqlnet.1.ora.
    INFO 2008-07-03 00:54:22
    Removing file F:/oracle/ecc92/network/admin/sqlnet.ora.
    INFO 2008-07-03 00:54:22
    Creating file F:\oracle\ecc92\network\admin\sqlnet.ora.
    INFO 2008-07-03 00:54:25
    All file system node operations of table tORA_DatabaseServerNodes processed successfully.
    INFO 2008-07-03 00:54:25
    All file system node operations of table tORA_SapdataNodes processed successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\saptrace.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\saptrace with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\saptrace\background.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\saptrace/background with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\saptrace\usertrace.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\saptrace/usertrace with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapreorg.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\sapreorg with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\saparch.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\saparch with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\oraarch.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\oraarch with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapcheck.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\sapcheck with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapbackup.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\sapbackup with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\origlogA.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\origlogA with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\mirrlogA.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\mirrlogA with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\origlogB.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\origlogB with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\mirrlogB.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\mirrlogB with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\cntrl.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\sapdata1\cntrl with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\saparch\cntrl.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\saparch\cntrl with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\origlogA\cntrl.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC\origlogA\cntrl with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    All file system node operations of table tORA_DatabaseServerNodes processed successfully.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1 exists already. Nothing to do.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_1.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_1 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_2.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_2 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_3.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_3 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_4.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_4 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_5.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_5 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_6.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_6 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_7.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_7 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_8.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_8 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_9.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_9 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_10.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_10 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_11.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_11 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_12.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_12 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_13.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_13 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_14.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_14 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_15.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_15 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_16.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_16 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_17.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_17 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_18.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_18 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_19.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_19 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_20.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_20 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_21.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_21 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_22.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_22 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_23.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_23 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_24.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_24 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_25.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_25 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_26.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_26 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_27.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_27 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_28.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_28 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_29.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_29 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_30.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_30 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc_31.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc_31 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_1.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_1 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_2.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_2 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_3.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_3 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_4.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_4 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_5.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_5 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_6.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_6 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_7.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_7 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_8.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_8 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_9.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_9 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_10.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_10 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_11.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_11 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_12.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_12 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_13.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_13 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_14.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_14 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_15.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_15 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_16.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_16 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\ecc640_17.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\ecc640_17 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\eccusr_1.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\eccusr_1 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\undo_1.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\undo_1 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\temp_1.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\temp_1 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    Creating directory F:\oracle\ECC\sapdata1\system_1.
    INFO 2008-07-03 00:54:26
    File system node F:\oracle\ECC/sapdata1\system_1 with type DIRECTORY created successfully.
    INFO 2008-07-03 00:54:26
    All file system node operations of table tORA_SapdataNodes processed successfully.
    INFO 2008-07-03 00:54:27
    All file system node operations of table tORA_DatabaseServerNodes processed successfully.
    INFO 2008-07-03 00:54:27
    All file system node operations of table tORA_SapdataNodes processed successfully.
    INFO 2008-07-03 00:54:29
    Copying file G:/erp2000/IM1/NT/COMMON/INSTALL/INITSIDBASE.ORA to: INITSIDBASE.ORA.
    INFO 2008-07-03 00:54:29
    Copying file G:/erp2000/IM1/NT/COMMON/INSTALL/INITSIDBASE.ORA to: INITSIDBASE.ORA.
    INFO 2008-07-03 00:54:29
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\INITSIDBASE.ORA.
    INFO 2008-07-03 00:54:29
    Creating file F:\oracle\ecc92\database\initECC.ora.
    INFO 2008-07-03 00:54:30
    Copying file G:/erp2000/IM1/NT/COMMON/INSTALL/INITSID920.ORA to: INITSID920.ORA.
    INFO 2008-07-03 00:54:30
    Copying file G:/erp2000/IM1/NT/COMMON/INSTALL/INITSID920.ORA to: INITSID920.ORA.
    INFO 2008-07-03 00:54:30
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\INITSID920.ORA.
    INFO 2008-07-03 00:54:30
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\INITSID920.ORA.tmp.
    INFO 2008-07-03 00:54:30
    Copying file F:/oracle/ecc92/database/initECC.ora to: F:/oracle/ecc92/database/initECC.1.ora.
    INFO 2008-07-03 00:54:30
    Copying file F:/oracle/ecc92/database/initECC.ora to: F:/oracle/ecc92/database/initECC.1.ora.
    INFO 2008-07-03 00:54:30
    Creating file F:\oracle\ecc92\database\initECC.1.ora.
    INFO 2008-07-03 00:54:30
    Moving file F:/oracle/ecc92/database/initECC.ora to: \s394.1.2.
    INFO 2008-07-03 00:54:30
    Moving file E:/s394.1 to: F:\oracle\ecc92/database/initECC.ora.
    INFO 2008-07-03 00:54:30
    Removing file E:/s394.1.2.
    INFO 2008-07-03 00:54:32
    Creating file F:\oracle\ecc92\database\initECC.sap.
    INFO 2008-07-03 00:54:33
    Copying file G:/erp2000/IM1/NT/COMMON/INSTALL/INITSID.DBA to: F:\oracle\ecc92/database/initECC.dba.
    INFO 2008-07-03 00:54:33
    Copying file G:/erp2000/IM1/NT/COMMON/INSTALL/INITSID.DBA to: F:\oracle\ecc92/database/initECC.dba.
    INFO 2008-07-03 00:54:33
    Creating file F:\oracle\ecc92\database\initECC.dba.
    INFO 2008-07-03 00:54:39
    Creating directory F:\oracle\ECC\sapdata1\system_1\cntrl.
    INFO 2008-07-03 00:54:43
    Switched to user: eccadm.
    INFO 2008-07-03 00:54:43
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:54:43
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\oradim.log.
    INFO 2008-07-03 00:54:43
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:54:43
    Output of F:\oracle\ecc92/bin/oradim '-DELETE' '-SID' 'ECC' is written to the logfile oradim.log.
    WARNING 2008-07-03 00:54:43
    Execution of the command "F:\oracle\ecc92/bin/oradim '-DELETE' '-SID' 'ECC'" finished with return code 10. Output:
    DIM-00010: SYSTEM\CurrentControlSet\Services\OracleService key does not exist
    O/S-Error: (OS 2) The system cannot find the file specified.
    INFO 2008-07-03 00:54:56
    Copying file F:/oracle/ecc92/database/initECC.ora to: F:/oracle/ecc92/database/initECC.2.ora.
    INFO 2008-07-03 00:54:56
    Copying file F:/oracle/ecc92/database/initECC.ora to: F:/oracle/ecc92/database/initECC.2.ora.
    INFO 2008-07-03 00:54:56
    Creating file F:\oracle\ecc92\database\initECC.2.ora.
    INFO 2008-07-03 00:54:56
    Moving file F:/oracle/ecc92/database/initECC.ora to: \s394.2.2.
    INFO 2008-07-03 00:54:56
    Moving file E:/s394.2 to: F:\oracle\ecc92/database/initECC.ora.
    INFO 2008-07-03 00:54:56
    Removing file E:/s394.2.2.
    INFO 2008-07-03 00:54:57
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/oradim.log to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/oradim.1.log.
    INFO 2008-07-03 00:54:57
    Copying file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/oradim.log to: E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/oradim.1.log.
    INFO 2008-07-03 00:54:57
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\oradim.1.log.
    INFO 2008-07-03 00:54:57
    Removing file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/oradim.log.
    INFO 2008-07-03 00:54:57
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\oradim.log.
    INFO 2008-07-03 00:54:57
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:54:57
    Output of F:\oracle\ecc92/bin/oradim '-NEW' '-SID' 'ECC' '-STARTMODE' 'auto' is written to the logfile oradim.log.
    INFO 2008-07-03 00:55:03
    Execution of the command "F:\oracle\ecc92/bin/oradim '-NEW' '-SID' 'ECC' '-STARTMODE' 'auto'" finished with return code 0. Output:
    INFO 2008-07-03 00:55:08
    Switched to user: eccadm.
    INFO 2008-07-03 00:55:08
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:55:08
    Switched to user: eccadm.
    INFO 2008-07-03 00:55:08
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:55:11
    Switched to user: eccadm.
    INFO 2008-07-03 00:55:11
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:55:50
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\ora_query3_tmp0_1.sql.
    INFO 2008-07-03 00:55:50
    Switched to user: eccadm.
    INFO 2008-07-03 00:55:50
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:55:50
    Switched to user: eccadm.
    INFO 2008-07-03 00:55:50
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:56:15
    Removing file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/ora_query3_tmp0_1.sql.
    INFO 2008-07-03 00:56:15
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\ora_query3_tmp0_1.sql.
    INFO 2008-07-03 00:56:15
    Switched to user: eccadm.
    INFO 2008-07-03 00:56:15
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:56:16
    Switched to user: eccadm.
    INFO 2008-07-03 00:56:16
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:57:56
    Removing file E:/Program Files/sapinst_instdir/ECC_50_ABAP_NUC/DB/ora_query3_tmp0_1.sql.
    INFO 2008-07-03 00:57:56
    Creating file E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\ora_query3_tmp0_1.sql.
    INFO 2008-07-03 00:57:56
    Switched to user: eccadm.
    INFO 2008-07-03 00:57:56
    Working directory changed to E:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB.
    INFO 2008-07-03 00:57:57
    Switched to user: eccadm.
     

  • Error while installing SAP IDES ECC6.0 on windows server 2003.

    Hi gurus,
      I am getting error in installing SAP IDES ECC 6.0. In import ABAP step i am not able to execute all 19 services only 1 services is getting fail that is related to sapview.So,can anyone suggest me that how to solve this error and complete installation.
    Thanks in Advace,
    nainesh patadia.

    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: job finished with 1 error(s)
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 20100726222931
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: START OF LOG: 20100726223305
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 01:28:45
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe -i SAPVIEW.cmd -dbcodepage 4103 -l SAPVIEW.log -loadprocedure fast
    (DB) ERROR: db_connect rc = 256
    (DB) ERROR: DbSlErrorMsg rc = 99
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: job finished with 1 error(s)
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 20100726223306
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: START OF LOG: 20100726223709
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 01:28:45
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe -i SAPVIEW.cmd -dbcodepage 4103 -l SAPVIEW.log -loadprocedure fast
    (DB) ERROR: db_connect rc = 256
    (DB) ERROR: DbSlErrorMsg rc = 99
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: job finished with 1 error(s)
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 20100726223710
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: START OF LOG: 20100811085903
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 01:28:45
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe -i SAPVIEW.cmd -dbcodepage 4103 -l SAPVIEW.log -loadprocedure fast
    (DB) ERROR: db_connect rc = 256
    (DB) ERROR: DbSlErrorMsg rc = 99
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: job finished with 1 error(s)
    C:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 20100811085911

  • InDesignServer Service not starting on Windows Server 2003 (32bit & 64 bit)

    Note: this issue is different from this thread on a similar issue.
    This problem has plagued me for weeks and I finally give up. InDesign Server installs successfully and the InDesignServerService starts, but the server does not run. I can only run the server from the command line. I've followed these installation instructions but run into the following problems:
    1. installing by the command line: InDesignServerService /install fails and produces the following error log:
    Installing service InDesignServerService...
    Creating EventLog source InDesignServerService in log Application...
    Rolling back assembly 'E:\Program Files\Adobe InDesign CS4 Server\InDesignServerService.exe'.
    Affected parameters are:
       logtoconsole =
       assemblypath = E:\Program Files\Adobe InDesign CS4 Server\InDesignServerService.exe
       logfile = E:\Program Files\Adobe InDesign CS4 Server\InDesignServerService.InstallLog
    Restoring event log to previous state for source InDesignServerService.
    2. I cannot install or load the snap-in to MMC. When I try to install regsvr32 InDesignServerMMC.dll it cannot be found (as it's not in the InDesign Server directory). However InDesignServerMMC64.dll is in there and I was able to load the snap-in using regsvr32 InDesignServerMMC.dll, but the server still only runs when being started from the command line.
    As I mentioned, InDesign Server runs fine when I have an active command line window open and run InDesignServer, but the moment I close the command line window, the server shuts down. Any ideas?

    Well, when you run it using command line if you close the command line, of course that servers going to shutdown. So, if you wanna run without any extra window opened, you have to start your service. Go to the windows service window (administrative tools) and start the service (it's installed automatically).
    Is your O.S. 32 or 64 bits? If it's 32 you install the wrong application, you have to install the compatible version with your O.S.
    If you installed correctly, you can try up the service using the follow command in you prompt.
    net start InDesignServerService (in this case you can close window when successefull menssages appear)
    Cya

  • Add-on installation problem in Windows Server 2003

    Hi guys,
    I have a problem when i want to install my add-on in the Windows Server 2003. The server gives me error :
    Unable to load AddOnInstallAPI.dll
    and when i try install using the same installer at the client station, everything is ok.
    Does anybody have suggestion about that problem? I suspect the problem is the Windows' security that did not allowed me to load the .dll. Does anybody know how to set the security?
    Thanks you,
    Harianto Ng

    I've found an answer on the similar question here, on the forum, saying that Windows 2003 is not a supported SAPBO Client OS.
    In my experience I could not even set a reference to SAPbouicom.exe with a message "cannot load DLL"...
    Natalya

  • Error in Installation of EPM 11.1.1.3 in windows server 2003-32 bit, AMD 64

    Hi All,,
    We are trying to install EPM 11.1.1.3 ( We are trying to install only Client Components ) in server machine( Processor AMD64, OS: Windows Server 2003 32Bit) we are installing the JAVA 1.6 Also.But we double Click the InstallerTool.cmd it will open the command prompt and throws an error below and disappearing.
    "R:\essbase\\jre\win32\1.6.0\"\..\..\..\installTOOL.jar
    >
    R:essbase>endlocal
    R:essbase>pause
    Press any key to continue...
    This is an error while double click the Installertool.cmd
    If it is Java Compatibility, how can we resolve it.
    We are trying to another XP machine with the same dump it is working
    But in Windows Server machine it is not working.
    For installation of client components only, is Java 1.6 installation is required??
    Could you pls help me What is the Problem
    It will graetful appreciate to resolve it
    Thanks in Advance.........

    Hi
    1. Did you delete tmp and cache after patching
    2. Did you clear the cached files in your browser post patching
    3. Generally the first time you access the system it takes time but the consquent attempts should not take much time.
    4. Did you increase the Java heap
         ex: HFMWeb
    HKEY_LOCAL_MACHINE\SOFTWARE\Hyperion Solutions\HFMWeb0\HyS9FinancialManagementWeb_epmsystem1
                    JVMOption21 | - Xms2048m
                    JVMOption38 | - Xmx2048m
    Next,
    When you are accessing the HFM Application please monitor the task manager and let us know the CPU and Physical Memory utilisation.Monitor the HSVDatasource.exe process .
    How much RAM do you have on your server and how many applications/components are hosted on that server?
    Thanks
    Anjum

  • Netweaver Java Edition SP16 installation hangs on MS Windows Server 2003

    Hi!
    - Downloaded the 4 files of netweaver java edition sp16
    - Extracted them in one folder on HDD
    - Executed installer (sapinst.exe) from local SAP web site beginning with start.html
    - Chose weak crypto level, local installation, no mirror log volumes, 64MB i/o buffer cache
    - 200 MB log volume
    - 5000 MB data volume
    Installation program reached phase 18 of 29 (Load Java Database Content)
    and hangs there since hours with the following statusbar info message: "INFO: table EP_OBJECT_TYPES created"
    My runtime environment:
    Microsoft Windows Server 2003 Standard Edition Service Pack 1
    Intel Pentium 4 3,4 GHz
    RAM: 1,99 GB
    Computername: test1
    User has admin privileges.
    Drives:
    - C: -> HDD (NTFS) 186 GB, 92,3 GB free
    - D: -> CDROM
    Java 2 SDK 1.4.2_10
    No other SAP products installed.
    No entry for ports 3601, 3201, 50000 to 50030 in C:\Windows\system32\drivers\etc\services file.
    No DHCP server available, but connected to network.
    Please see the full installation log:
    INFO 2006-09-21 13:56:20
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO 2006-09-21 13:56:20
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO 2006-09-21 13:56:20
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\q0w9e9r8t7.1.xml.
    INFO 2006-09-21 13:56:28
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.1.xml.
    INFO 2006-09-21 13:56:28
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.1.xml.
    INFO 2006-09-21 13:56:28
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\keydb.1.xml.
    INFO 2006-09-21 13:56:30
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\change.log.
    INFO 2006-09-21 13:56:30
    Output of change 'user' '/install' is written to the logfile change.log.
    WARNING 2006-09-21 13:56:30
    Execution of the command "change 'user' '/install'" finished with return code 1. Output: Benutzersitzung ist bereit fr die Installation von Anwendungen.
    INFO 2006-09-21 13:56:31
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'TEST1\mku' on host '.'.
    INFO 2006-09-21 13:56:36
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\summary.html.
    PHASE 2006-09-21 13:56:36
    Prepare the installation program.
    INFO 2006-09-21 13:57:19
    This SAPinst Java System Copy is Property File Version : 1.11
    INFO 2006-09-21 13:57:19
    This SAPinst EXE uses OS Build Version : I386
    INFO 2006-09-21 13:57:19
    This SAPinst XML is DB Build Version : ada
    INFO[E] 2006-09-21 13:57:32
    File system export (share) saploc does not exist.
    INFO 2006-09-21 13:57:32
    Looking for SAP system instances installed on this host...
    INFO 2006-09-21 13:57:36
    No installed instances found!
    INFO 2006-09-21 13:57:38
    DNS is configured correctly.
    INFO[E] 2006-09-21 13:57:51
    File system export (share) saploc does not exist.
    INFO 2006-09-21 13:57:58
    Copying file C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Java_DVD/J2EE_OSINDEP/JDKVersion.xml to: ..
    INFO 2006-09-21 13:57:58
    Copying file C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Java_DVD/J2EE_OSINDEP/JDKVersion.xml to: ..
    INFO 2006-09-21 13:57:58
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\JDKVersion.xml.
    INFO 2006-09-21 13:57:59
    Execution of the command "C:\j2sdk1.4.2_07/bin/java.exe '-version'" finished with return code 0. Output: java version "1.4.2_07"Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_07-b05)Java HotSpot(TM) Client VM (build 1.4.2_07-b05, mixed mode)
    INFO 2006-09-21 13:57:59
    Execution of the command "C:\j2sdk1.4.2_07/bin/java.exe '-classpath' 'C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/JAR/ins-j2ee.jar;C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/JAR/sapxmltoolkit.jar' 'com.sap.ins.j2ee.TestClassLoader'" finished with return code 0. Output: CORRECT
    INFO 2006-09-21 13:57:59
    Found a valid JAVA_HOME directory C:\j2sdk1.4.2_07 with JDK version 1.4.2_07.
    INFO 2006-09-21 13:58:02
    Execution of the command "C:\j2sdk1.4.2_07/bin/java.exe '-version'" finished with return code 0. Output: java version "1.4.2_07"Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_07-b05)Java HotSpot(TM) Client VM (build 1.4.2_07-b05, mixed mode)
    INFO 2006-09-21 13:59:11
    Execution of the command "C:\j2sdk1.4.2_10/bin/java.exe '-version'" finished with return code 0. Output: java version "1.4.2_10"Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_10-b03)Java HotSpot(TM) Client VM (build 1.4.2_10-b03, mixed mode)
    INFO 2006-09-21 13:59:11
    Execution of the command "C:\j2sdk1.4.2_10/bin/java.exe '-classpath' 'C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/JAR/ins-j2ee.jar;C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/JAR/sapxmltoolkit.jar' 'com.sap.ins.j2ee.TestClassLoader'" finished with return code 0. Output: CORRECT
    INFO 2006-09-21 13:59:15
    Creating directory C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\jdkPolicyCheck.
    INFO 2006-09-21 13:59:15
    Working directory changed to C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/jdkPolicyCheck.
    INFO 2006-09-21 13:59:15
    Working directory changed to C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST.
    INFO 2006-09-21 13:59:15
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\local_policy.log.
    INFO 2006-09-21 13:59:15
    Output of C:\j2sdk1.4.2_10/bin/jar.exe is written to the logfile local_policy.log.
    INFO 2006-09-21 13:59:15
    Output of C:\j2sdk1.4.2_10/bin/jar.exe 'xvf' 'C:/j2sdk1.4.2_10/jre/lib/security/local_policy.jar':
    INFO 2006-09-21 13:59:16
    Working directory changed to C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/jdkPolicyCheck.
    INFO 2006-09-21 13:59:16
    Working directory changed to C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST.
    INFO 2006-09-21 13:59:16
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\US_export_policy.log.
    INFO 2006-09-21 13:59:16
    Output of C:\j2sdk1.4.2_10/bin/jar.exe is written to the logfile US_export_policy.log.
    INFO 2006-09-21 13:59:16
    Output of C:\j2sdk1.4.2_10/bin/jar.exe 'xvf' 'C:/j2sdk1.4.2_10/jre/lib/security/US_export_policy.jar':
    INFO 2006-09-21 13:59:16
    Removing file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\jdkPolicyCheck\default_local.policy.
    INFO 2006-09-21 13:59:16
    Removing file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\jdkPolicyCheck\default_US_export.policy.
    INFO 2006-09-21 13:59:16
    Removing file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\jdkPolicyCheck\exempt_local.policy.
    INFO 2006-09-21 13:59:16
    Removing file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\jdkPolicyCheck\META-INF\JCE_RSA.RSA.
    INFO 2006-09-21 13:59:16
    Removing file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\jdkPolicyCheck\META-INF\JCE_RSA.SF.
    INFO 2006-09-21 13:59:16
    Removing file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\jdkPolicyCheck\META-INF\MANIFEST.MF.
    INFO 2006-09-21 13:59:16
    Removing directory C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/jdkPolicyCheck/META-INF.
    INFO 2006-09-21 13:59:16
    Removing directory C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/jdkPolicyCheck.
    INFO[E] 2006-09-21 13:59:29
    Account user="j2eadm" does not exist.
    INFO[E] 2006-09-21 13:59:43
    File system export (share) saploc does not exist.
    INFO[E] 2006-09-21 13:59:48
    Account user="test1\j2eadm" does not exist.
    INFO[E] 2006-09-21 13:59:53
    Account user="test1\SAPServiceJ2E" does not exist.
    INFO[E] 2006-09-21 14:00:18
    File system export (share) saploc does not exist.
    INFO[E] 2006-09-21 14:00:30
    Account user="test1\j2eadm" does not exist.
    INFO[E] 2006-09-21 14:00:34
    Account user="test1\SAPServiceJ2E" does not exist.
    INFO[E] 2006-09-21 14:00:44
    File system export (share) saploc does not exist.
    INFO[E] 2006-09-21 14:00:45
    File system export (share) saploc does not exist.
    INFO[E] 2006-09-21 14:00:49
    Account user="test1\j2eadm" does not exist.
    INFO[E] 2006-09-21 14:00:54
    Account user="test1\j2eadm" does not exist.
    INFO[E] 2006-09-21 14:01:00
    Account user="test1\SAPServiceJ2E" does not exist.
    INFO[E] 2006-09-21 14:01:05
    Account user="test1\SAPServiceJ2E" does not exist.
    INFO[E] 2006-09-21 14:01:12
    File system export (share) saploc does not exist.
    INFO 2006-09-21 14:01:12
    Looking for SAP system instances installed on this host...
    INFO 2006-09-21 14:01:16
    No installed instances found!
    INFO[E] 2006-09-21 14:01:24
    File system export (share) saploc does not exist.
    WARNING[E] 2006-09-21 14:01:24
    Error converting from service name=sapmsJ2E/protocol=tcp to port number. SAPRETURN=12
    INFO[E] 2006-09-21 14:01:34
    File system export (share) saploc does not exist.
    INFO[E] 2006-09-21 14:02:30
    File system export (share) saploc does not exist.
    INFO 2006-09-21 14:02:34
    Execution of the command "C:\j2sdk1.4.2_10/bin/java.exe '-version'" finished with return code 0. Output: java version "1.4.2_10"Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_10-b03)Java HotSpot(TM) Client VM (build 1.4.2_10-b03, mixed mode)
    INFO 2006-09-21 14:02:34
    Execution of the command "C:\j2sdk1.4.2_10/bin/java.exe '-classpath' 'C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/JAR/ins-j2ee.jar;C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/JAR/sapxmltoolkit.jar' 'com.sap.ins.j2ee.TestClassLoader'" finished with return code 0. Output: CORRECT
    INFO[E] 2006-09-21 14:03:02
    File system export (share) saploc does not exist.
    INFO[E] 2006-09-21 14:03:07
    Account user="test1\j2eadm" does not exist.
    INFO[E] 2006-09-21 14:03:11
    Account user="test1\j2eadm" does not exist.
    INFO[E] 2006-09-21 14:03:18
    Account user="test1\SAPServiceJ2E" does not exist.
    INFO[E] 2006-09-21 14:03:23
    Account user="test1\SAPServiceJ2E" does not exist.
    INFO 2006-09-21 14:03:28
    Looking for SAP system instances installed on this host...
    INFO 2006-09-21 14:03:32
    Found these instances: sid: J2E, number: 01, name: SCS01, host: test1
    INFO[E] 2006-09-21 14:03:58
    File system export (share) saploc does not exist.
    INFO 2006-09-21 14:07:29
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\J2E_sapdb_db_parameter.txt.
    INFO[E] 2006-09-21 14:08:29
    File system export (share) saploc does not exist.
    INFO 2006-09-21 14:08:42
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.html to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.1.html.
    INFO 2006-09-21 14:08:42
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.html to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.1.html.
    INFO 2006-09-21 14:08:42
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\summary.1.html.
    INFO 2006-09-21 14:08:48
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/product.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/product.1.xml.
    INFO 2006-09-21 14:08:48
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/product.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/product.1.xml.
    INFO 2006-09-21 14:08:48
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\product.1.xml.
    INFO 2006-09-21 14:08:48
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.1.xml.
    INFO 2006-09-21 14:08:48
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.1.xml.
    INFO 2006-09-21 14:08:48
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\JDKVersion.1.xml.
    INFO 2006-09-21 14:08:48
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.2.xml.
    INFO 2006-09-21 14:08:48
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.2.xml.
    INFO 2006-09-21 14:08:48
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\JDKVersion.2.xml.
    INFO 2006-09-21 14:08:49
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.3.xml.
    INFO 2006-09-21 14:08:49
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.3.xml.
    INFO 2006-09-21 14:08:49
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\JDKVersion.3.xml.
    INFO 2006-09-21 14:08:49
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.4.xml.
    INFO 2006-09-21 14:08:49
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/JDKVersion.4.xml.
    INFO 2006-09-21 14:08:49
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\JDKVersion.4.xml.
    INFO[E] 2006-09-21 14:09:10
    File system export (share) saploc does not exist.
    INFO[E] 2006-09-21 14:09:29
    File system export (share) saploc does not exist.
    INFO[E] 2006-09-21 14:09:42
    File system export (share) saploc does not exist.
    INFO[E] 2006-09-21 14:09:55
    File system export (share) saploc does not exist.
    INFO[E] 2006-09-21 14:10:02
    Account group="test1\SAP_LocalAdmin" does not exist.
    INFO[E] 2006-09-21 14:10:07
    Account group="test1\SAP_LocalAdmin" does not exist.
    INFO 2006-09-21 14:10:14
    Account SAP_LocalAdmin created.
    INFO 2006-09-21 14:10:14
    Modification description="SAP Local Administration Group" for account test1\SAP_LocalAdmin was successful.
    INFO[E] 2006-09-21 14:10:18
    Account group="test1\SAP_J2E_LocalAdmin" does not exist.
    INFO[E] 2006-09-21 14:10:23
    Account group="test1\SAP_J2E_LocalAdmin" does not exist.
    INFO 2006-09-21 14:10:30
    Account SAP_J2E_LocalAdmin created.
    INFO 2006-09-21 14:10:30
    Modification description="SAP Local Administration Group" for account test1\SAP_J2E_LocalAdmin was successful.
    INFO[E] 2006-09-21 14:10:35
    Account group="test1\SAP_J2E_GlobalAdmin" does not exist.
    INFO[E] 2006-09-21 14:10:39
    Account group="test1\SAP_J2E_GlobalAdmin" does not exist.
    INFO 2006-09-21 14:10:46
    Account SAP_J2E_GlobalAdmin created.
    INFO 2006-09-21 14:10:46
    Modification description="SAP Global Administration Group" for account test1\SAP_J2E_GlobalAdmin was successful.
    INFO[E] 2006-09-21 14:10:51
    Account user="test1\SAPServiceJ2E" does not exist.
    INFO 2006-09-21 14:11:10
    Account test1\SAPServiceJ2E added to group test1\SAP_J2E_GlobalAdmin.
    INFO 2006-09-21 14:11:14
    Account test1\SAPServiceJ2E added to group TEST1\Administratoren.
    INFO 2006-09-21 14:11:19
    Account test1\SAPServiceJ2E added to group test1\SAP_LocalAdmin.
    INFO 2006-09-21 14:11:24
    Account test1\SAPServiceJ2E added to group test1\SAP_J2E_LocalAdmin.
    INFO 2006-09-21 14:11:24
    Account test1\SAPServiceJ2E created.
    INFO 2006-09-21 14:11:25
    Successfully added privileges 'SeServiceLogonRight SeNetworkLogonRight SeDenyInteractiveLogonRight SeDenyRemoteInteractiveLogonRight' to account 'test1\SAPServiceJ2E' on host '.'.
    INFO[E] 2006-09-21 14:11:29
    Account user="test1\j2eadm" does not exist.
    INFO 2006-09-21 14:11:55
    Account test1\j2eadm added to group test1\SAP_J2E_GlobalAdmin.
    INFO 2006-09-21 14:12:04
    Account test1\j2eadm added to group TEST1\Benutzer.
    INFO 2006-09-21 14:12:09
    Account test1\j2eadm added to group TEST1\Administratoren.
    INFO 2006-09-21 14:12:14
    Account test1\j2eadm added to group test1\SAP_LocalAdmin.
    INFO 2006-09-21 14:12:18
    Account test1\j2eadm added to group test1\SAP_J2E_LocalAdmin.
    INFO 2006-09-21 14:12:18
    Account test1\j2eadm created.
    INFO 2006-09-21 14:12:19
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'test1\j2eadm' on host '.'.
    INFO 2006-09-21 14:12:22
    Switched to user: j2eadm.
    INFO 2006-09-21 14:12:22
    Switched to user: j2eadm.
    INFO 2006-09-21 14:12:22
    Switched to user: j2eadm.
    INFO 2006-09-21 14:12:22
    Switched to user: j2eadm.
    INFO 2006-09-21 14:12:22
    Switched to user: j2eadm.
    INFO 2006-09-21 14:12:22
    Switched to user: j2eadm.
    INFO 2006-09-21 14:12:22
    Switched to user: j2eadm.
    INFO[E] 2006-09-21 14:12:31
    File system export (share) saploc does not exist.
    INFO 2006-09-21 14:12:33
    Switched to user: j2eadm.
    INFO 2006-09-21 14:12:33
    Creating system directories for SAP system J2E.
    INFO 2006-09-21 14:12:34
    Creating directory C:\Dokumente und Einstellungen\mku\WINDOWS\TEMP.
    INFO 2006-09-21 14:12:34
    Creating directory C:\usr.
    INFO 2006-09-21 14:12:34
    Creating directory C:\usr\sap.
    INFO 2006-09-21 14:12:34
    Creating directory C:\usr\sap\J2E.
    INFO 2006-09-21 14:12:34
    Creating directory C:\usr\sap\prfclog.
    INFO 2006-09-21 14:12:34
    Creating directory C:\usr\sap\prfclog\dsr.
    INFO 2006-09-21 14:12:34
    Creating directory C:\usr\sap\prfclog\logmon.
    INFO 2006-09-21 14:12:34
    Creating directory C:\usr\sap\prfclog\procmon.
    INFO 2006-09-21 14:12:34
    Creating directory C:\usr\sap\prfclog\grmg.
    INFO 2006-09-21 14:12:34
    Creating directory C:\usr\sap\ccms.
    INFO 2006-09-21 14:12:35
    Creating directory C:\usr\sap\tmp.
    INFO 2006-09-21 14:12:35
    File system node C:\usr\sap/J2E exists already. Nothing to do.
    INFO 2006-09-21 14:12:35
    Creating directory C:\usr\sap\J2E\SYS.
    INFO 2006-09-21 14:12:35
    Creating directory C:\usr\sap\J2E\SYS\exe.
    INFO 2006-09-21 14:12:35
    Creating directory C:\usr\sap\J2E\SYS\exe\opt.
    INFO 2006-09-21 14:12:35
    Creating directory C:\usr\sap\J2E\SYS\exe\dbg.
    INFO 2006-09-21 14:12:35
    Creating directory C:\usr\sap\J2E\SYS\exe\run.
    INFO 2006-09-21 14:12:35
    Creating directory C:\usr\sap\J2E\SYS\gen.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SYS\gen\dbg.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SYS\gen\opt.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SYS\global.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SYS\profile.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SYS\src.
    INFO 2006-09-21 14:12:36
    File system node C:\usr\sap\J2E\SYS\exe\run exists already. Nothing to do.
    INFO 2006-09-21 14:12:36
    Creating instance directories for instance J2E/SCS01.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SCS01.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SCS01\data.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SCS01\data\cache.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SCS01\log.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SCS01\sec.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SCS01\work.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\ccms\J2E_01.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\ccms\J2E_01\sapccmsr.
    INFO 2006-09-21 14:12:36
    Creating directory C:\usr\sap\J2E\SCS01\exe.
    INFO 2006-09-21 14:12:36
    File system node C:\usr\sap\J2E\SYS\exe\run exists already. Nothing to do.
    INFO 2006-09-21 14:12:36
    Creating instance directories for instance J2E/JC00.
    INFO 2006-09-21 14:12:37
    Creating directory C:\usr\sap\J2E\JC00.
    INFO 2006-09-21 14:12:37
    Creating directory C:\usr\sap\J2E\JC00\data.
    INFO 2006-09-21 14:12:37
    Creating directory C:\usr\sap\J2E\JC00\data\cache.
    INFO 2006-09-21 14:12:37
    Creating directory C:\usr\sap\J2E\JC00\log.
    INFO 2006-09-21 14:12:37
    Creating directory C:\usr\sap\J2E\JC00\sec.
    INFO 2006-09-21 14:12:37
    Creating directory C:\usr\sap\J2E\JC00\work.
    INFO 2006-09-21 14:12:37
    Creating directory C:\usr\sap\ccms\J2E_00.
    INFO 2006-09-21 14:12:37
    Creating directory C:\usr\sap\ccms\J2E_00\sapccmsr.
    INFO 2006-09-21 14:12:37
    Creating directory C:\usr\sap\J2E\JC00\exe.
    INFO 2006-09-21 14:12:37
    File system node C:\usr\sap\J2E\SYS\exe\run exists already. Nothing to do.
    INFO 2006-09-21 14:12:37
    Creating directory C:\usr\sap\J2E\JC00\j2ee.
    INFO 2006-09-21 14:12:37
    Creating directory C:\usr\sap\J2E\JC00\SDM.
    INFO[E] 2006-09-21 14:12:50
    File system export (share) saploc does not exist.
    INFO 2006-09-21 14:12:52
    Stopping SAP system services for J2E.
    ERROR 2006-09-21 14:12:52
    FSL-06002  Error 1060 (Der angegebene Dienst ist kein installierter Dienst.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPOsCol).
    ERROR 2006-09-21 14:13:22
    FSL-06002  Error 1060 (Der angegebene Dienst ist kein installierter Dienst.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_01).
    ERROR 2006-09-21 14:13:22
    FSL-06002  Error 1060 (Der angegebene Dienst ist kein installierter Dienst.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_01).
    ERROR 2006-09-21 14:13:22
    FSL-06002  Error 1060 (Der angegebene Dienst ist kein installierter Dienst.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_00).
    ERROR 2006-09-21 14:13:23
    FSL-06002  Error 1060 (Der angegebene Dienst ist kein installierter Dienst.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_00).
    INFO[E] 2006-09-21 14:13:31
    File system export (share) saploc does not exist.
    INFO[E] 2006-09-21 14:13:43
    File system export (share) saploc does not exist.
    INFO 2006-09-21 14:13:45
    Creating directory C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\SCS.SAR.
    INFO 2006-09-21 14:13:46
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\SCS.log.
    INFO 2006-09-21 14:13:46
    Output of C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/SAPCAR.exe is written to the logfile SCS.log.
    INFO 2006-09-21 14:13:49
    Output of C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/SAPCAR.exe '-x' '-v' '-g' '-i' '-n' '-R' 'SCS.SAR' '-f' 'C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Installation_Master\IM01_NT_I386\..\..\SAP_NetWeaver_04_SR_1_Java_DVD\SCS_NT_I386\SCS/NT/I386/SCS.SAR,':
    INFO 2006-09-21 14:13:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/SAPCAR.exe to: C:/usr/sap/J2E/SYS/exe/run/SAPCAR.exe.
    INFO 2006-09-21 14:13:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/dsrlib.dll to: C:/usr/sap/J2E/SYS/exe/run/dsrlib.dll.
    INFO 2006-09-21 14:13:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/enqt.exe to: C:/usr/sap/J2E/SYS/exe/run/enqt.exe.
    INFO 2006-09-21 14:13:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/enrepserver.exe to: C:/usr/sap/J2E/SYS/exe/run/enrepserver.exe.
    INFO 2006-09-21 14:13:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/enrepserver.pdb to: C:/usr/sap/J2E/SYS/exe/run/enrepserver.pdb.
    INFO 2006-09-21 14:13:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/enserver.exe to: C:/usr/sap/J2E/SYS/exe/run/enserver.exe.
    INFO 2006-09-21 14:13:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/enserver.pdb to: C:/usr/sap/J2E/SYS/exe/run/enserver.pdb.
    INFO 2006-09-21 14:13:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/ensmon.exe to: C:/usr/sap/J2E/SYS/exe/run/ensmon.exe.
    INFO 2006-09-21 14:13:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/esmon.exe to: C:/usr/sap/J2E/SYS/exe/run/esmon.exe.
    INFO 2006-09-21 14:13:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/icmadmin.SAR to: C:/usr/sap/J2E/SYS/exe/run/icmadmin.SAR.
    INFO 2006-09-21 14:13:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/icmbnd.exe to: C:/usr/sap/J2E/SYS/exe/run/icmbnd.exe.
    INFO 2006-09-21 14:13:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/icmon.exe to: C:/usr/sap/J2E/SYS/exe/run/icmon.exe.
    INFO 2006-09-21 14:13:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/icu_license.txt to: C:/usr/sap/J2E/SYS/exe/run/icu_license.txt.
    INFO 2006-09-21 14:13:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/icudt20.dll to: C:/usr/sap/J2E/SYS/exe/run/icudt20.dll.
    INFO 2006-09-21 14:13:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/icudt26l.dll to: C:/usr/sap/J2E/SYS/exe/run/icudt26l.dll.
    INFO 2006-09-21 14:13:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/icuin20.dll to: C:/usr/sap/J2E/SYS/exe/run/icuin20.dll.
    INFO 2006-09-21 14:13:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/icuin26.dll to: C:/usr/sap/J2E/SYS/exe/run/icuin26.dll.
    INFO 2006-09-21 14:13:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/icuuc20.dll to: C:/usr/sap/J2E/SYS/exe/run/icuuc20.dll.
    INFO 2006-09-21 14:13:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/icuuc26.dll to: C:/usr/sap/J2E/SYS/exe/run/icuuc26.dll.
    INFO 2006-09-21 14:13:52
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jcmon.exe to: C:/usr/sap/J2E/SYS/exe/run/jcmon.exe.
    INFO 2006-09-21 14:13:52
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jcontrol.exe to: C:/usr/sap/J2E/SYS/exe/run/jcontrol.exe.
    INFO 2006-09-21 14:13:52
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jenqulib.dll to: C:/usr/sap/J2E/SYS/exe/run/jenqulib.dll.
    INFO 2006-09-21 14:13:52
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jenqulib.jar to: C:/usr/sap/J2E/SYS/exe/run/jenqulib.jar.
    INFO 2006-09-21 14:13:52
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jenqulib.pdb to: C:/usr/sap/J2E/SYS/exe/run/jenqulib.pdb.
    INFO 2006-09-21 14:13:52
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jlaunch.exe to: C:/usr/sap/J2E/SYS/exe/run/jlaunch.exe.
    INFO 2006-09-21 14:13:52
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jlaunchw.exe to: C:/usr/sap/J2E/SYS/exe/run/jlaunchw.exe.
    INFO 2006-09-21 14:13:52
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jperflib.dll to: C:/usr/sap/J2E/SYS/exe/run/jperflib.dll.
    INFO 2006-09-21 14:13:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jperflib.jar to: C:/usr/sap/J2E/SYS/exe/run/jperflib.jar.
    INFO 2006-09-21 14:13:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jperflib.pdb to: C:/usr/sap/J2E/SYS/exe/run/jperflib.pdb.
    INFO 2006-09-21 14:13:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jstartup.jar to: C:/usr/sap/J2E/SYS/exe/run/jstartup.jar.
    INFO 2006-09-21 14:13:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jstartupapi.jar to: C:/usr/sap/J2E/SYS/exe/run/jstartupapi.jar.
    INFO 2006-09-21 14:13:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/jstartupimpl.jar to: C:/usr/sap/J2E/SYS/exe/run/jstartupimpl.jar.
    INFO 2006-09-21 14:13:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/libsapu16vc71.dll to: C:/usr/sap/J2E/SYS/exe/run/libsapu16vc71.dll.
    INFO 2006-09-21 14:13:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/libsapu16vc71.pdb to: C:/usr/sap/J2E/SYS/exe/run/libsapu16vc71.pdb.
    INFO 2006-09-21 14:13:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/msclients.exe to: C:/usr/sap/J2E/SYS/exe/run/msclients.exe.
    INFO 2006-09-21 14:13:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/msg_server.exe to: C:/usr/sap/J2E/SYS/exe/run/msg_server.exe.
    INFO 2006-09-21 14:13:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/msg_server.pdb to: C:/usr/sap/J2E/SYS/exe/run/msg_server.pdb.
    INFO 2006-09-21 14:13:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/msmon.exe to: C:/usr/sap/J2E/SYS/exe/run/msmon.exe.
    INFO 2006-09-21 14:13:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/msprot.exe to: C:/usr/sap/J2E/SYS/exe/run/msprot.exe.
    INFO 2006-09-21 14:13:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/niping.exe to: C:/usr/sap/J2E/SYS/exe/run/niping.exe.
    INFO 2006-09-21 14:13:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/ntjcmon_mt.pdb to: C:/usr/sap/J2E/SYS/exe/run/ntjcmon_mt.pdb.
    INFO 2006-09-21 14:13:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/ntjcontrol_mt.pdb to: C:/usr/sap/J2E/SYS/exe/run/ntjcontrol_mt.pdb.
    INFO 2006-09-21 14:13:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/ntjlaunch_mt.pdb to: C:/usr/sap/J2E/SYS/exe/run/ntjlaunch_mt.pdb.
    INFO 2006-09-21 14:13:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/ntjlaunchw_mt.pdb to: C:/usr/sap/J2E/SYS/exe/run/ntjlaunchw_mt.pdb.
    INFO 2006-09-21 14:13:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/ntscmgr.exe to: C:/usr/sap/J2E/SYS/exe/run/ntscmgr.exe.
    INFO 2006-09-21 14:13:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapccmsr.exe to: C:/usr/sap/J2E/SYS/exe/run/sapccmsr.exe.
    INFO 2006-09-21 14:13:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapcpe.exe to: C:/usr/sap/J2E/SYS/exe/run/sapcpe.exe.
    INFO 2006-09-21 14:13:55
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapevents.dll to: C:/usr/sap/J2E/SYS/exe/run/sapevents.dll.
    INFO 2006-09-21 14:13:55
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapntchk.exe to: C:/usr/sap/J2E/SYS/exe/run/sapntchk.exe.
    INFO 2006-09-21 14:13:55
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapntkill.exe to: C:/usr/sap/J2E/SYS/exe/run/sapntkill.exe.
    INFO 2006-09-21 14:13:55
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapntwaitforhalt.exe to: C:/usr/sap/J2E/SYS/exe/run/sapntwaitforhalt.exe.
    INFO 2006-09-21 14:13:55
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/saposcol.exe to: C:/usr/sap/J2E/SYS/exe/run/saposcol.exe.
    INFO 2006-09-21 14:13:55
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/saposcol.pdb to: C:/usr/sap/J2E/SYS/exe/run/saposcol.pdb.
    INFO 2006-09-21 14:13:55
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sappad.exe to: C:/usr/sap/J2E/SYS/exe/run/sappad.exe.
    INFO 2006-09-21 14:13:55
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sappfpar.exe to: C:/usr/sap/J2E/SYS/exe/run/sappfpar.exe.
    INFO 2006-09-21 14:13:55
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapsrvkill.exe to: C:/usr/sap/J2E/SYS/exe/run/sapsrvkill.exe.
    INFO 2006-09-21 14:13:56
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapstart.exe to: C:/usr/sap/J2E/SYS/exe/run/sapstart.exe.
    INFO 2006-09-21 14:13:56
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapstartsrv.exe to: C:/usr/sap/J2E/SYS/exe/run/sapstartsrv.exe.
    INFO 2006-09-21 14:13:56
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapstartsrv.exe.new to: C:/usr/sap/J2E/SYS/exe/run/sapstartsrv.exe.new.
    INFO 2006-09-21 14:13:56
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapstartsrv.pdb to: C:/usr/sap/J2E/SYS/exe/run/sapstartsrv.pdb.
    INFO 2006-09-21 14:13:56
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sapwebdisp.exe to: C:/usr/sap/J2E/SYS/exe/run/sapwebdisp.exe.
    INFO 2006-09-21 14:13:56
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/scs.lst to: C:/usr/sap/J2E/SYS/exe/run/scs.lst.
    INFO 2006-09-21 14:13:56
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sldreg.exe to: C:/usr/sap/J2E/SYS/exe/run/sldreg.exe.
    INFO 2006-09-21 14:13:57
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/sservmgr.exe to: C:/usr/sap/J2E/SYS/exe/run/sservmgr.exe.
    INFO 2006-09-21 14:13:57
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/startsap.exe to: C:/usr/sap/J2E/SYS/exe/run/startsap.exe.
    INFO 2006-09-21 14:13:57
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SCS.SAR/stopsap.exe to: C:/usr/sap/J2E/SYS/exe/run/stopsap.exe.
    INFO 2006-09-21 14:13:57
    Copying file C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/INSTALL/ADA/STRDBSJ2EE.CMD to: STRDBSJ2EE.CMD.
    INFO 2006-09-21 14:13:57
    Copying file C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Installation_Master/IM01_NT_I386/SAPINST/NT/COMMON/INSTALL/ADA/STRDBSJ2EE.CMD to: STRDBSJ2EE.CMD.
    INFO 2006-09-21 14:13:57
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\STRDBSJ2EE.CMD.
    INFO 2006-09-21 14:13:57
    Switched to user: j2eadm.
    INFO 2006-09-21 14:13:57
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/STRDBSJ2EE.CMD to: C:/usr/sap/J2E/SYS/exe/run/strdbsj2ee.cmd.
    INFO 2006-09-21 14:13:57
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/STRDBSJ2EE.CMD to: C:/usr/sap/J2E/SYS/exe/run/strdbsj2ee.cmd.
    INFO 2006-09-21 14:13:57
    Creating file C:\usr\sap\J2E\SYS\exe\run\strdbsj2ee.cmd.
    INFO 2006-09-21 14:13:57
    Copying file C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Installation_Master/IM01_NT_I386/SAPINST/NT/I386/UNINSAP.EXE to: C:/usr/sap/J2E/SCS01/UNINSTSAP.EXE.
    INFO 2006-09-21 14:13:57
    Copying file C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Installation_Master/IM01_NT_I386/SAPINST/NT/I386/UNINSAP.EXE to: C:/usr/sap/J2E/SCS01/UNINSTSAP.EXE.
    INFO 2006-09-21 14:13:57
    Creating file C:\usr\sap\J2E\SCS01\UNINSTSAP.EXE.
    INFO 2006-09-21 14:13:57
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapstartsrv.exe to: C:/usr/sap/J2E/SCS01/exe/sapstartsrv.exe.
    INFO 2006-09-21 14:13:57
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapstartsrv.exe to: C:/usr/sap/J2E/SCS01/exe/sapstartsrv.exe.
    INFO 2006-09-21 14:13:57
    Creating file C:\usr\sap\J2E\SCS01\exe\sapstartsrv.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/saposcol.exe to: C:/usr/sap/J2E/SCS01/exe/saposcol.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/saposcol.exe to: C:/usr/sap/J2E/SCS01/exe/saposcol.exe.
    INFO 2006-09-21 14:13:58
    Creating file C:\usr\sap\J2E\SCS01\exe\saposcol.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapevents.dll to: C:/usr/sap/J2E/SCS01/exe/sapevents.dll.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapevents.dll to: C:/usr/sap/J2E/SCS01/exe/sapevents.dll.
    INFO 2006-09-21 14:13:58
    Creating file C:\usr\sap\J2E\SCS01\exe\sapevents.dll.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapcpe.exe to: C:/usr/sap/J2E/SCS01/exe/sapcpe.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapcpe.exe to: C:/usr/sap/J2E/SCS01/exe/sapcpe.exe.
    INFO 2006-09-21 14:13:58
    Creating file C:\usr\sap\J2E\SCS01\exe\sapcpe.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/libsapu16vc71.dll to: C:/usr/sap/J2E/SCS01/exe/libsapu16vc71.dll.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/libsapu16vc71.dll to: C:/usr/sap/J2E/SCS01/exe/libsapu16vc71.dll.
    INFO 2006-09-21 14:13:58
    Creating file C:\usr\sap\J2E\SCS01\exe\libsapu16vc71.dll.
    WARNING 2006-09-21 14:13:58
    While copying files to 'C:\usr\sap\J2E\SCS01\exe': source file 'C:\usr\sap\J2E\SYS\exe\run/icudt26.dll' not found.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/icuin26.dll to: C:/usr/sap/J2E/SCS01/exe/icuin26.dll.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/icuin26.dll to: C:/usr/sap/J2E/SCS01/exe/icuin26.dll.
    INFO 2006-09-21 14:13:58
    Creating file C:\usr\sap\J2E\SCS01\exe\icuin26.dll.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/icuuc26.dll to: C:/usr/sap/J2E/SCS01/exe/icuuc26.dll.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/icuuc26.dll to: C:/usr/sap/J2E/SCS01/exe/icuuc26.dll.
    INFO 2006-09-21 14:13:58
    Creating file C:\usr\sap\J2E\SCS01\exe\icuuc26.dll.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapstart.exe to: C:/usr/sap/J2E/SCS01/exe/sapstart.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapstart.exe to: C:/usr/sap/J2E/SCS01/exe/sapstart.exe.
    INFO 2006-09-21 14:13:58
    Creating file C:\usr\sap\J2E\SCS01\exe\sapstart.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapntkill.exe to: C:/usr/sap/J2E/SCS01/exe/sapntkill.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapntkill.exe to: C:/usr/sap/J2E/SCS01/exe/sapntkill.exe.
    INFO 2006-09-21 14:13:58
    Creating file C:\usr\sap\J2E\SCS01\exe\sapntkill.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapsrvkill.exe to: C:/usr/sap/J2E/SCS01/exe/sapsrvkill.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapsrvkill.exe to: C:/usr/sap/J2E/SCS01/exe/sapsrvkill.exe.
    INFO 2006-09-21 14:13:58
    Creating file C:\usr\sap\J2E\SCS01\exe\sapsrvkill.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapntwaitforhalt.exe to: C:/usr/sap/J2E/SCS01/exe/sapntwaitforhalt.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapntwaitforhalt.exe to: C:/usr/sap/J2E/SCS01/exe/sapntwaitforhalt.exe.
    INFO 2006-09-21 14:13:58
    Creating file C:\usr\sap\J2E\SCS01\exe\sapntwaitforhalt.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/startsap.exe to: C:/usr/sap/J2E/SCS01/exe/startsap.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/startsap.exe to: C:/usr/sap/J2E/SCS01/exe/startsap.exe.
    INFO 2006-09-21 14:13:58
    Creating file C:\usr\sap\J2E\SCS01\exe\startsap.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/stopsap.exe to: C:/usr/sap/J2E/SCS01/exe/stopsap.exe.
    INFO 2006-09-21 14:13:58
    Copying file C:/usr/sap/J2E/SYS/exe/run/stopsap.exe to: C:/usr/sap/J2E/SCS01/exe/stopsap.exe.
    INFO 2006-09-21 14:13:59
    Creating file C:\usr\sap\J2E\SCS01\exe\stopsap.exe.
    INFO 2006-09-21 14:13:59
    Copying file C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Installation_Master/IM01_NT_I386/SAPINST/NT/I386/UNINSAP.EXE to: C:/usr/sap/J2E/JC00/UNINSTSAP.EXE.
    INFO 2006-09-21 14:13:59
    Copying file C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Installation_Master/IM01_NT_I386/SAPINST/NT/I386/UNINSAP.EXE to: C:/usr/sap/J2E/JC00/UNINSTSAP.EXE.
    INFO 2006-09-21 14:13:59
    Creating file C:\usr\sap\J2E\JC00\UNINSTSAP.EXE.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapstartsrv.exe to: C:/usr/sap/J2E/JC00/exe/sapstartsrv.exe.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapstartsrv.exe to: C:/usr/sap/J2E/JC00/exe/sapstartsrv.exe.
    INFO 2006-09-21 14:13:59
    Creating file C:\usr\sap\J2E\JC00\exe\sapstartsrv.exe.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/saposcol.exe to: C:/usr/sap/J2E/JC00/exe/saposcol.exe.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/saposcol.exe to: C:/usr/sap/J2E/JC00/exe/saposcol.exe.
    INFO 2006-09-21 14:13:59
    Creating file C:\usr\sap\J2E\JC00\exe\saposcol.exe.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapevents.dll to: C:/usr/sap/J2E/JC00/exe/sapevents.dll.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapevents.dll to: C:/usr/sap/J2E/JC00/exe/sapevents.dll.
    INFO 2006-09-21 14:13:59
    Creating file C:\usr\sap\J2E\JC00\exe\sapevents.dll.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapcpe.exe to: C:/usr/sap/J2E/JC00/exe/sapcpe.exe.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapcpe.exe to: C:/usr/sap/J2E/JC00/exe/sapcpe.exe.
    INFO 2006-09-21 14:13:59
    Creating file C:\usr\sap\J2E\JC00\exe\sapcpe.exe.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/libsapu16vc71.dll to: C:/usr/sap/J2E/JC00/exe/libsapu16vc71.dll.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/libsapu16vc71.dll to: C:/usr/sap/J2E/JC00/exe/libsapu16vc71.dll.
    INFO 2006-09-21 14:13:59
    Creating file C:\usr\sap\J2E\JC00\exe\libsapu16vc71.dll.
    WARNING 2006-09-21 14:13:59
    While copying files to 'C:\usr\sap\J2E\JC00\exe': source file 'C:\usr\sap\J2E\SYS\exe\run/icudt26.dll' not found.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/icuin26.dll to: C:/usr/sap/J2E/JC00/exe/icuin26.dll.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/icuin26.dll to: C:/usr/sap/J2E/JC00/exe/icuin26.dll.
    INFO 2006-09-21 14:13:59
    Creating file C:\usr\sap\J2E\JC00\exe\icuin26.dll.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/icuuc26.dll to: C:/usr/sap/J2E/JC00/exe/icuuc26.dll.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/icuuc26.dll to: C:/usr/sap/J2E/JC00/exe/icuuc26.dll.
    INFO 2006-09-21 14:13:59
    Creating file C:\usr\sap\J2E\JC00\exe\icuuc26.dll.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapstart.exe to: C:/usr/sap/J2E/JC00/exe/sapstart.exe.
    INFO 2006-09-21 14:13:59
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapstart.exe to: C:/usr/sap/J2E/JC00/exe/sapstart.exe.
    INFO 2006-09-21 14:13:59
    Creating file C:\usr\sap\J2E\JC00\exe\sapstart.exe.
    INFO 2006-09-21 14:14:00
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapntkill.exe to: C:/usr/sap/J2E/JC00/exe/sapntkill.exe.
    INFO 2006-09-21 14:14:00
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapntkill.exe to: C:/usr/sap/J2E/JC00/exe/sapntkill.exe.
    INFO 2006-09-21 14:14:00
    Creating file C:\usr\sap\J2E\JC00\exe\sapntkill.exe.
    INFO 2006-09-21 14:14:00
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapsrvkill.exe to: C:/usr/sap/J2E/JC00/exe/sapsrvkill.exe.
    INFO 2006-09-21 14:14:00
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapsrvkill.exe to: C:/usr/sap/J2E/JC00/exe/sapsrvkill.exe.
    INFO 2006-09-21 14:14:00
    Creating file C:\usr\sap\J2E\JC00\exe\sapsrvkill.exe.
    INFO 2006-09-21 14:14:00
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapntwaitforhalt.exe to: C:/usr/sap/J2E/JC00/exe/sapntwaitforhalt.exe.
    INFO 2006-09-21 14:14:00
    Copying file C:/usr/sap/J2E/SYS/exe/run/sapntwaitforhalt.exe to: C:/usr/sap/J2E/JC00/exe/sapntwaitforhalt.exe.
    INFO 2006-09-21 14:14:00
    Creating file C:\usr\sap\J2E\JC00\exe\sapntwaitforhalt.exe.
    INFO 2006-09-21 14:14:00
    Copying file C:/usr/sap/J2E/SYS/exe/run/startsap.exe to: C:/usr/sap/J2E/JC00/exe/startsap.exe.
    INFO 2006-09-21 14:14:00
    Copying file C:/usr/sap/J2E/SYS/exe/run/startsap.exe to: C:/usr/sap/J2E/JC00/exe/startsap.exe.
    INFO 2006-09-21 14:14:00
    Creating file C:\usr\sap\J2E\JC00\exe\startsap.exe.
    INFO 2006-09-21 14:14:00
    Copying file C:/usr/sap/J2E/SYS/exe/run/stopsap.exe to: C:/usr/sap/J2E/JC00/exe/stopsap.exe.
    INFO 2006-09-21 14:14:00
    Copying file C:/usr/sap/J2E/SYS/exe/run/stopsap.exe to: C:/usr/sap/J2E/JC00/exe/stopsap.exe.
    INFO 2006-09-21 14:14:00
    Creating file C:\usr\sap\J2E\JC00\exe\stopsap.exe.
    INFO[E] 2006-09-21 14:14:12
    File system export (share) saploc does not exist.
    INFO 2006-09-21 14:14:14
    Creating SAP system shares for J2E.
    INFO 2006-09-21 14:14:14
    Creating share saploc at directory C:\usr\sap.
    INFO[E] 2006-09-21 14:14:14
    File system export (share) saploc does not exist.
    INFO 2006-09-21 14:14:14
    Creating share sapmnt at directory C:\usr\sap.
    INFO[E] 2006-09-21 14:14:14
    File system export (share) sapmnt does not exist.
    INFO 2006-09-21 14:14:25
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.1.
    INFO 2006-09-21 14:14:25
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.1.
    INFO 2006-09-21 14:14:25
    Creating file C:\WINDOWS\system32\drivers\etc\services.1.
    INFO 2006-09-21 14:14:25
    Creating SAP instance ports for J2E/SCS01.
    INFO 2006-09-21 14:14:25
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:25
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:25
    Creating file C:\WINDOWS\system32\drivers\etc\services.SAPtmp.
    INFO 2006-09-21 14:14:25
    Removing file C:\WINDOWS\system32\drivers\etc\services.
    INFO 2006-09-21 14:14:25
    Entry sapdp01     3201/tcp     # SAP System Dispatcher Port attached to file C:/WINDOWS/system32/drivers/etc/services.
    INFO 2006-09-21 14:14:25
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:25
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:25
    Creating file C:\WINDOWS\system32\drivers\etc\services.SAPtmp.
    INFO 2006-09-21 14:14:26
    Removing file C:\WINDOWS\system32\drivers\etc\services.
    INFO 2006-09-21 14:14:26
    Entry sapdp01s     4701/tcp     # SAP System Dispatcher Security Port attached to file C:/WINDOWS/system32/drivers/etc/services.
    INFO 2006-09-21 14:14:26
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:26
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:26
    Creating file C:\WINDOWS\system32\drivers\etc\services.SAPtmp.
    INFO 2006-09-21 14:14:26
    Removing file C:\WINDOWS\system32\drivers\etc\services.
    INFO 2006-09-21 14:14:26
    Entry sapgw01     3301/tcp     # SAP System Gateway Port attached to file C:/WINDOWS/system32/drivers/etc/services.
    INFO 2006-09-21 14:14:26
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:26
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:26
    Creating file C:\WINDOWS\system32\drivers\etc\services.SAPtmp.
    INFO 2006-09-21 14:14:27
    Removing file C:\WINDOWS\system32\drivers\etc\services.
    INFO 2006-09-21 14:14:27
    Entry sapgw01s     4801/tcp     # SAP System Gateway Security Port attached to file C:/WINDOWS/system32/drivers/etc/services.
    INFO 2006-09-21 14:14:27
    Creating SAP instance ports for J2E/JC00.
    INFO 2006-09-21 14:14:27
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:27
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:27
    Creating file C:\WINDOWS\system32\drivers\etc\services.SAPtmp.
    INFO 2006-09-21 14:14:27
    Removing file C:\WINDOWS\system32\drivers\etc\services.
    INFO 2006-09-21 14:14:27
    Entry sapgw00     3300/tcp     # SAP System Gateway Port attached to file C:/WINDOWS/system32/drivers/etc/services.
    INFO 2006-09-21 14:14:27
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:27
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:27
    Creating file C:\WINDOWS\system32\drivers\etc\services.SAPtmp.
    INFO 2006-09-21 14:14:27
    Removing file C:\WINDOWS\system32\drivers\etc\services.
    INFO 2006-09-21 14:14:27
    Entry sapgw00s     4800/tcp     # SAP System Gateway Security Port attached to file C:/WINDOWS/system32/drivers/etc/services.
    INFO 2006-09-21 14:14:27
    Creating SAP system ports for J2E.
    INFO 2006-09-21 14:14:28
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:28
    Copying file C:/WINDOWS/system32/drivers/etc/services to: C:/WINDOWS/system32/drivers/etc/services.SAPtmp.
    INFO 2006-09-21 14:14:28
    Creating file C:\WINDOWS\system32\drivers\etc\services.SAPtmp.
    INFO 2006-09-21 14:14:28
    Removing file C:\WINDOWS\system32\drivers\etc\services.
    INFO 2006-09-21 14:14:28
    Entry sapmsJ2E     3601/tcp     # SAP System Message Port attached to file C:/WINDOWS/system32/drivers/etc/services.
    INFO 2006-09-21 14:14:39
    Creating SAP system profiles for J2E.
    INFO 2006-09-21 14:14:39
    Switched to user: j2eadm.
    INFO 2006-09-21 14:14:39
    Creating default profile for J2E.
    INFO 2006-09-21 14:14:39
    Creating file C:\usr\sap\J2E\SYS\profile\DEFAULT.PFL.
    INFO 2006-09-21 14:14:40
    Creating SAP instance profiles for J2E/SCS01.
    INFO 2006-09-21 14:14:40
    Creating file C:\usr\sap\J2E\SYS\profile\J2E_SCS01_test1.
    INFO 2006-09-21 14:14:41
    Creating file C:\usr\sap\J2E\SYS\profile\START_SCS01_test1.
    INFO 2006-09-21 14:14:42
    Creating SAP instance profiles for J2E/JC00.
    INFO 2006-09-21 14:14:43
    Creating file C:\usr\sap\J2E\SYS\profile\J2E_JC00_test1.
    INFO 2006-09-21 14:14:44
    Creating file C:\usr\sap\J2E\SYS\profile\START_JC00_test1.
    INFO 2006-09-21 14:15:22
    Creating SAP system services for J2E.
    INFO 2006-09-21 14:15:22
    Switched to user: j2eadm.
    ERROR 2006-09-21 14:15:23
    FSL-06002  Error 1060 (Der angegebene Dienst ist kein installierter Dienst.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPOsCol).
    INFO 2006-09-21 14:15:23
    The 'SAPOsCol' service on host 'Local' was removed successfully.
    INFO 2006-09-21 14:15:23
    The 'SAPOsCol' service on the 'Local' machine was created successfully.
    INFO 2006-09-21 14:15:24
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\sapstartsrv.exe.log.
    INFO 2006-09-21 14:15:24
    Output of C:\usr\sap\J2E\SCS01\exe/sapstartsrv.exe '-r' '-q' '-p' 'C:\usr\sap\J2E\SYS\profile\START_SCS01_test1' '-s' 'J2E' '-n' '01' '-U' 'test1\SAPServiceJ2E' '-P' 'XXXXXX' '-e' 'test1\j2eadm' is written to the logfile sapstartsrv.exe.log.
    INFO 2006-09-21 14:15:31
    Execution of the command "C:\usr\sap\J2E\SCS01\exe/sapstartsrv.exe '-r' '-q' '-p' 'C:\usr\sap\J2E\SYS\profile\START_SCS01_test1' '-s' 'J2E' '-n' '01' '-U' 'test1\SAPServiceJ2E' '-P' 'XXXXXX' '-e' 'test1\j2eadm'" finished with return code 0. Output: Service succesfully installed.
    INFO 2006-09-21 14:15:45
    Installing MMC snap-in and creating shortcuts for J2E.
    INFO 2006-09-21 14:15:45
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\SAPMMC.log.
    INFO 2006-09-21 14:15:45
    Output of C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/SAPCAR.exe is written to the logfile SAPMMC.log.
    INFO 2006-09-21 14:15:48
    Output of C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/SAPCAR.exe '-x' '-v' '-g' '-i' '-n' '-f' 'C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Installation_Master\IM01_NT_I386\SAPINST/NT/I386/MMC/SAPMMC.SAR,':
    INFO 2006-09-21 14:15:49
    Removing file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\librfc32.dll.
    INFO 2006-09-21 14:15:49
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/sapmmc.dll to: C:/WINDOWS/system32.
    INFO 2006-09-21 14:15:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/sapmmcada.dll to: C:/WINDOWS/system32.
    INFO 2006-09-21 14:15:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/sapmmcdb6.dll to: C:/WINDOWS/system32.
    INFO 2006-09-21 14:15:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/sapmmcinf.dll to: C:/WINDOWS/system32.
    INFO 2006-09-21 14:15:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/sapmmcms.dll to: C:/WINDOWS/system32.
    INFO 2006-09-21 14:15:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/sapmmc.chm to: C:/Dokumente und Einstellungen/mku/WINDOWS/help.
    INFO 2006-09-21 14:15:51
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/sapmmc.chm to: C:/Dokumente und Einstellungen/mku/WINDOWS/help.
    INFO 2006-09-21 14:15:51
    Creating file C:\Dokumente und Einstellungen\mku\WINDOWS\help.
    INFO 2006-09-21 14:15:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SAPMMC.MSC to: C:/WINDOWS/SAPMMC.MSC.
    INFO 2006-09-21 14:15:54
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/SAPMMC.MSC to: C:/WINDOWS/SAPMMC.MSC.
    INFO 2006-09-21 14:15:54
    Creating file C:\WINDOWS\SAPMMC.MSC.
    INFO 2006-09-21 14:15:54
    SAP snap-in registered successfully in the MMC.
    INFO 2006-09-21 14:15:54
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\J2E_rmMMCshortcut.kdb.
    INFO 2006-09-21 14:15:54
    All program items removed successfully, while processing the table 'tNT_ProgramItems'.
    INFO 2006-09-21 14:15:54
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\J2E_MMCshortcut.kdb.
    INFO 2006-09-21 14:15:55
    All program items entries from the table 'tNT_ProgramItems' created or updated successfully.
    INFO 2006-09-21 14:16:03
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/J2E_rmMMCshortcut.kdb to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/J2E_rmMMCshortcut.1.kdb.
    INFO 2006-09-21 14:16:03
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/J2E_rmMMCshortcut.kdb to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/J2E_rmMMCshortcut.1.kdb.
    INFO 2006-09-21 14:16:03
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\J2E_rmMMCshortcut.1.kdb.
    INFO 2006-09-21 14:16:03
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/J2E_MMCshortcut.kdb to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/J2E_MMCshortcut.1.kdb.
    INFO 2006-09-21 14:16:03
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/J2E_MMCshortcut.kdb to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/J2E_MMCshortcut.1.kdb.
    INFO 2006-09-21 14:16:03
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\J2E_MMCshortcut.1.kdb.
    INFO 2006-09-21 14:18:22
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\IGS.log.
    INFO 2006-09-21 14:18:22
    Output of C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/SAPCAR.exe is written to the logfile IGS.log.
    INFO 2006-09-21 14:18:28
    Output of C:/DOKUME1/mku/LOKALE1/Temp/sapinst_exe.3056.1158839738/SAPCAR.exe '-x' '-v' '-g' '-i' '-n' '-R' 'C:\usr\sap/J2E/JC00' '-f' 'C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Installation_Master\IM01_NT_I386\..\..\SAP_NetWeaver_04_SR_1_Java_DVD\IGS\IGS_SOFT/NT/I386/IGS.SAR,':
    INFO 2006-09-21 14:18:37
    Removing file C:\usr\sap\J2E\JC00\igs\bin\librfc32.dll.
    INFO 2006-09-21 14:18:50
    Removing file C:\usr\sap\J2E\JC00\igs\doc\igsinst.pdf.
    INFO 2006-09-21 14:18:50
    Removing directory C:/usr/sap/J2E/JC00/igs/doc.
    INFO 2006-09-21 14:18:59
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\igsConfig.log.
    INFO 2006-09-21 14:19:00
    Working directory changed to C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST.
    INFO 2006-09-21 14:19:00
    Output of C:\usr\sap/J2E/JC00/igs/bin/igswd.exe 'C:\usr\sap\J2E\JC00\igs' '-c' '-tracelevel=1' '-mux=test1,40000' '-listenerhttp=40080' '-portwatcher=40001' '-portwatcher=40002' is written to the logfile igsConfig.log.
    WARNING 2006-09-21 14:19:00
    Execution of the command "C:\usr\sap/J2E/JC00/igs/bin/igswd.exe 'C:\usr\sap\J2E\JC00\igs' '-c' '-tracelevel=1' '-mux=test1,40000' '-listenerhttp=40080' '-portwatcher=40001' '-portwatcher=40002'" finished with return code 1. Output:
    INFO 2006-09-21 14:19:23
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\sdbinst.log.
    INFO 2006-09-21 14:19:23
    Output of C:\netweaver\NWSneakPreviewSP16\RDBMS_MaxDB_7.5.0_Build_18_NT\NT\I386\SDBINST.EXE '-indep_prog' 'C:\sapdb\programs' '-indep_data' 'C:\sapdb\data' '-profile' 'Runtime For SAP AS' '-b' is written to the logfile C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/sdbinst.log.
    INFO 2006-09-21 14:20:36
    Execution of the command "C:\netweaver\NWSneakPreviewSP16\RDBMS_MaxDB_7.5.0_Build_18_NT\NT\I386\SDBINST.EXE '-indep_prog' 'C:\sapdb\programs' '-indep_data' 'C:\sapdb\data' '-profile' 'Runtime For SAP AS' '-b'" finished with return code 0. Output:
    INFO 2006-09-21 14:21:00
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/sdbinst.log to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/sdbinst.1.log.
    INFO 2006-09-21 14:21:00
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/sdbinst.log to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/sdbinst.1.log.
    INFO 2006-09-21 14:21:00
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\sdbinst.1.log.
    INFO 2006-09-21 14:21:00
    Removing file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\sdbinst.log.
    INFO 2006-09-21 14:21:00
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\sdbinst.log.
    INFO 2006-09-21 14:21:00
    Output of C:\netweaver\NWSneakPreviewSP16\RDBMS_MaxDB_7.5.0_Build_18_NT\NT\I386\SDBINST.EXE '-indep_prog' 'c:\sapdb\programs' '-indep_data' 'c:\sapdb\data' '-depend' 'C:\sapdb\J2E\db' '-profile' 'Server' '-b' is written to the logfile C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/sdbinst.log.
    INFO 2006-09-21 14:23:34
    Execution of the command "C:\netweaver\NWSneakPreviewSP16\RDBMS_MaxDB_7.5.0_Build_18_NT\NT\I386\SDBINST.EXE '-indep_prog' 'c:\sapdb\programs' '-indep_data' 'c:\sapdb\data' '-depend' 'C:\sapdb\J2E\db' '-profile' 'Server' '-b'" finished with return code 0. Output:
    INFO 2006-09-21 14:23:54
    The service 'XServer' started successfully on host 'Local'.
    INFO 2006-09-21 14:24:48
    Creating directory C:\sapdb\j2e\sapdata.
    INFO 2006-09-21 14:24:48
    File system node C:\sapdb\J2E\sapdata with type DIRECTORY created successfully.
    INFO 2006-09-21 14:24:48
    Creating directory C:\sapdb\j2e\saplog.
    INFO 2006-09-21 14:24:48
    File system node C:\sapdb\J2E\saplog with type DIRECTORY created successfully.
    INFO 2006-09-21 14:24:48
    All file system node operations of table tADA_Files processed successfully.
    INFO 2006-09-21 14:28:55
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_

    Hi, many thanks!
    I set the DB to online and restartet the installation. It has been run to the "Load Java Database Content" phase, but has been hanging there since about 14 hours.
    I canceled the installation, checked the DB (it's still online) and tried to continue the installation. Now the installation program is in the "Load Java Database Content" phase again since about 22 minutes, without visible progress.
    Please have a look at the current sapinst.log:
    INFO 2006-09-26 09:26:42
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO 2006-09-26 09:26:42
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO 2006-09-26 09:26:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.html to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.2.html.
    INFO 2006-09-26 09:26:50
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.html to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.2.html.
    INFO 2006-09-26 09:26:50
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\summary.2.html.
    PHASE 2006-09-26 09:26:50
    Prepare the installation program.
    INFO 2006-09-26 09:27:28
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.html to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.3.html.
    INFO 2006-09-26 09:27:28
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.html to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/summary.3.html.
    INFO 2006-09-26 09:27:28
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\summary.3.html.
    PHASE 2006-09-26 09:27:40
    Deploying SDAs (using SDM and SAP J2EE Engine).
    PHASE 2006-09-26 09:27:41
    Deploying SDAs (using SDM and SAP J2EE Engine).
    PHASE 2006-09-26 09:27:42
    Deploying SDAs (using SDM and SAP J2EE Engine).
    PHASE 2006-09-26 09:27:44
    Deploying SDAs (using SDM and SAP J2EE Engine).
    PHASE 2006-09-26 09:27:45
    SAP J2EE Engine
    PHASE 2006-09-26 09:27:45
    JLoad Run
    INFO 2006-09-26 09:27:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.2.xml.
    INFO 2006-09-26 09:27:53
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.xml to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/keydb.2.xml.
    INFO 2006-09-26 09:27:53
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\keydb.2.xml.
    INFO 2006-09-26 09:27:56
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/jload.java.log to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/jload.java.1.log.
    INFO 2006-09-26 09:27:56
    Copying file C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/jload.java.log to: C:/Programme/sapinst_instdir/NW04SR1/WEBAS_COPY/ONE_HOST/jload.java.1.log.
    INFO 2006-09-26 09:27:56
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\jload.java.1.log.
    INFO 2006-09-26 09:27:56
    Removing file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\jload.java.log.
    INFO 2006-09-26 09:27:56
    Creating file C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST\jload.java.log.
    INFO 2006-09-26 09:27:56
    Working directory changed to C:/usr/sap/J2E/JC00/j2ee/sltools.
    INFO 2006-09-26 09:27:56
    Working directory changed to C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST.
    INFO 2006-09-26 09:27:56
    Output of C:\j2sdk1.4.2_10/bin/java.exe '-classpath' './sharedlib/antlr.jar;./sharedlib/exception.jar;./sharedlib/jddi.jar;./sharedlib/jload.jar;./sharedlib/logging.jar;./sharedlib/offlineconfiguration.jar;./sharedlib/opensqlsta.jar;./sharedlib/tc_sec_secstorefs.jar;c:\sapdb\programs\runtime\jar\sapdbc.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jce_export.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_jsse.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_smime.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/iaik_ssl.jar;C:/usr/sap/J2E/SYS/global/security/lib/tools/w3c_http.jar' '-Duser.timezone=Europe/Berlin' '-showversion' '-Xmx512m' 'com.sap.inst.jload.Jload' '-sec' 'J2E,jdbc/pool/J2E,C:\usr\sap\J2E\SYS\global/security/data/SecStore.properties,C:\usr\sap\J2E\SYS\global/security/data/SecStore.key' '-dataDir' 'C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Installation_Master\IM01_NT_I386\..\..\SneakPreviewContent\JDMP' '-job' 'C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/IMPORT.XML' '-log' 'C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log' is written to the logfile C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.java.log.
    Here's the content of the current jload.log:
    25.09.06 18:43:14 com.sap.inst.jload.Jload main
    INFO: Jload -sec J2E,jdbc/pool/J2E,C:\usr\sap\J2E\SYS\global/security/data/SecStore.properties,C:\usr\sap\J2E\SYS\global/security/data/SecStore.key -dataDir C:/netweaver/NWSneakPreviewSP16/SAP_NetWeaver_04_SR_1_Installation_Master\IM01_NT_I386\..\..\SneakPreviewContent\JDMP -job C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/IMPORT.XML -log C:\Programme\sapinst_instdir\NW04SR1\WEBAS_COPY\ONE_HOST/jload.log
    25.09.06 18:43:16 com.sap.inst.jload.db.DBConnection connectViaSecureStore
    INFO: connected to J2E on jdbc/pool/J2E
    25.09.06 18:43:17 com.sap.inst.jload.JobStatus readStatus
    INFO: trying to read status file C:\usr\sap\J2E\JC00\j2ee\sltools\IMPORT.sta
    25.09.06 18:43:17 com.sap.inst.jload.JobStatus readStatus
    INFO: status file IMPORT.sta doesn't exist - no restart
    25.09.06 18:43:17 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table ADS_LICENSED_FORMS
    25.09.06 18:43:18 com.sap.inst.jload.Jload dbImport
    INFO: table ADS_LICENSED_FORMS created
    25.09.06 18:43:18 com.sap.inst.jload.Jload dbImport
    INFO: ADS_LICENSED_FORMS loaded (0 rows)
    25.09.06 18:43:18 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CMSRTS
    25.09.06 18:43:18 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CMSRTS created
    25.09.06 18:43:18 com.sap.inst.jload.Jload dbImport
    INFO: BC_CMSRTS loaded (0 rows)
    25.09.06 18:43:18 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_COMPVERS
    25.09.06 18:43:18 com.sap.inst.jload.Jload dbImport
    INFO: table BC_COMPVERS created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_COMPVERS loaded (702 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_ACTION
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_ACTION created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_ACTION loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_ALLOC_ID
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_ALLOC_ID created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_ALLOC_ID loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_CORRELATOR
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_CORRELATOR created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_CORRELATOR loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_CORR_DEF
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_CORR_DEF created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_CORR_DEF loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_IMPORT_LOCK
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_IMPORT_LOCK created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_IMPORT_LOCK loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_METRIC
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_METRIC created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_METRIC loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_METRIC_DEF
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_METRIC_DEF created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_METRIC_DEF loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_MODULE
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_MODULE created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_MODULE loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_ORIGIN
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_ORIGIN created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_ORIGIN loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_PROVIDER
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_PROVIDER created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_PROVIDER loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_RECORD
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_RECORD created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_RECORD loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_RECORD_CORR
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_RECORD_CORR created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_RECORD_CORR loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CPT_THREAD
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CPT_THREAD created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CPT_THREAD loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_CVERS
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: table BC_CVERS created
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: BC_CVERS loaded (0 rows)
    25.09.06 18:43:19 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_COURSE
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_COURSE created
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_COURSE loaded (0 rows)
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_CRSDESCR
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_CRSDESCR created
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_CRSDESCR loaded (0 rows)
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_CRS_SKILL
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_CRS_SKILL created
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_CRS_SKILL loaded (0 rows)
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_DEPARTMENT
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_DEPARTMENT created
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_DEPARTMENT loaded (0 rows)
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_EMPLOYEE
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_EMPLOYEE created
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_EMPLOYEE loaded (0 rows)
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_EMP_EVENT
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_EMP_EVENT created
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_EMP_EVENT loaded (0 rows)
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_EMP_PRJ
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_EMP_PRJ created
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_EMP_PRJ loaded (0 rows)
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_EMP_SKILL
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_EMP_SKILL created
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_EMP_SKILL loaded (0 rows)
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_EVENT
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_EVENT created
    25.09.06 18:43:20 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_EVENT loaded (0 rows)
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_FORM
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_FORM created
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_FORM loaded (0 rows)
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_FORMINPUT
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_FORMINPUT created
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_FORMINPUT loaded (0 rows)
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_LANGUAGE
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_LANGUAGE created
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_LANGUAGE loaded (0 rows)
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_PRJ_SKILL
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_PRJ_SKILL created
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_PRJ_SKILL loaded (0 rows)
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_PROJECT
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_PROJECT created
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_PROJECT loaded (0 rows)
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_EDM_SKILL
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: table BC_EDM_SKILL created
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: BC_EDM_SKILL loaded (0 rows)
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_ETE_ACTIVITIES
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: table BC_ETE_ACTIVITIES created
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: BC_ETE_ACTIVITIES loaded (0 rows)
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_ETE_SYSACTIVITY
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: table BC_ETE_SYSACTIVITY created
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: BC_ETE_SYSACTIVITY loaded (0 rows)
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_ETE_SYSORIGIN
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: table BC_ETE_SYSORIGIN created
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: BC_ETE_SYSORIGIN loaded (0 rows)
    25.09.06 18:43:21 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_ETE_SYSTEMS
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_ETE_SYSTEMS created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_ETE_SYSTEMS loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_JARM_CHISTORY
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_JARM_CHISTORY created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_JARM_CHISTORY loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_JARM_COMPONENT
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_JARM_COMPONENT created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_JARM_COMPONENT loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_JARM_REQUEST
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_JARM_REQUEST created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_JARM_REQUEST loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_JARM_RHISTORY
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_JARM_RHISTORY created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_JARM_RHISTORY loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_JARM_UHISTORY
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_JARM_UHISTORY created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_JARM_UHISTORY loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_JARM_USER
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_JARM_USER created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_JARM_USER loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_JMSDMSGQ
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_JMSDMSGQ created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_JMSDMSGQ loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_JMSQUEUE
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_JMSQUEUE created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_JMSQUEUE loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_JMSTOPIC
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_JMSTOPIC created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_JMSTOPIC loaded (1 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_JMSTOPICSUB
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_JMSTOPICSUB created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_JMSTOPICSUB loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_JMSTXLOG
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_JMSTXLOG created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_JMSTXLOG loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_MON_AGREGATES
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: table BC_MON_AGREGATES created
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: BC_MON_AGREGATES loaded (0 rows)
    25.09.06 18:43:22 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_MON_ID_ALLOC
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: table BC_MON_ID_ALLOC created
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: BC_MON_ID_ALLOC loaded (0 rows)
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_MON_MONITORS
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: table BC_MON_MONITORS created
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: BC_MON_MONITORS loaded (0 rows)
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_RPROF_PROFILE
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: table BC_RPROF_PROFILE created
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: BC_RPROF_PROFILE loaded (2 rows)
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SCCOMPAT
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SCCOMPAT created
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: BC_SCCOMPAT loaded (0 rows)
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SCCOVERAGE
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SCCOVERAGE created
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: BC_SCCOVERAGE loaded (0 rows)
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SCREQUIRED
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SCREQUIRED created
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: BC_SCREQUIRED loaded (0 rows)
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SCVERSION
    25.09.06 18:43:23 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SCVERSION created
    25.09.06 18:43:24 com.sap.inst.jload.Jload dbImport
    INFO: BC_SCVERSION loaded (0 rows)
    25.09.06 18:43:24 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SESSIONFAILOVER
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SESSIONFAILOVER created
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: BC_SESSIONFAILOVER loaded (1 rows)
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_ASSINST
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_ASSINST created
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_ASSINST loaded (0 rows)
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_ASSOC
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_ASSOC created
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_ASSOC loaded (0 rows)
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_CHANGELOG
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_CHANGELOG created
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_CHANGELOG loaded (0 rows)
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_CLASS
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_CLASS created
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_CLASS loaded (0 rows)
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_DELTAEXPORT
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_DELTAEXPORT created
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_DELTAEXPORT loaded (0 rows)
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_INST
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_INST created
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_INST loaded (0 rows)
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_INSTANCES
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_INSTANCES created
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_INSTANCES loaded (0 rows)
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_LONGVALUES
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_LONGVALUES created
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_LONGVALUES loaded (0 rows)
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_NAMESP
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_NAMESP created
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_NAMESP loaded (0 rows)
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_NAMESPACES
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_NAMESPACES created
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_NAMESPACES loaded (0 rows)
    25.09.06 18:43:25 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_PROPARRAYS
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_PROPARRAYS created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_PROPARRAYS loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_PROPERTIES
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_PROPERTIES created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_PROPERTIES loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_PROPERTYREF
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_PROPERTYREF created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_PROPERTYREF loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_QUAL
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_QUAL created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_QUAL loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_QUALIFIERS
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_QUALIFIERS created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_QUALIFIERS loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLD_ROLE
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLD_ROLE created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLD_ROLE loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLM_JNET
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLM_JNET created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLM_JNET loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLM_JNET_DATA
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLM_JNET_DATA created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLM_JNET_DATA loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLM_PLAN
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLM_PLAN created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLM_PLAN loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLM_PLAN_CIM
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLM_PLAN_CIM created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLM_PLAN_CIM loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLM_PLAN_DATA
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLM_PLAN_DATA created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLM_PLAN_DATA loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SLM_USER
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SLM_USER created
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: BC_SLM_USER loaded (0 rows)
    25.09.06 18:43:26 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_SYNCLOG
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: table BC_SYNCLOG created
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: BC_SYNCLOG loaded (16 rows)
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_ACCOUNT
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_ACCOUNT created
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_ACCOUNT loaded (0 rows)
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_BE_DISCURL
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_BE_DISCURL created
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_BE_DISCURL loaded (0 rows)
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_BE_MAIN
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_BE_MAIN created
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_BE_MAIN loaded (0 rows)
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_BS_MAIN
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_BS_MAIN created
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_BS_MAIN loaded (0 rows)
    25.09.06 18:43:27 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_BS_PROJ
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_BS_PROJ created
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_BS_PROJ loaded (0 rows)
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_BT_MAIN
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_BT_MAIN created
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_BT_MAIN loaded (0 rows)
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_BT_TMINST
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_BT_TMINST created
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_BT_TMINST loaded (0 rows)
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_CHGREC
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_CHGREC created
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_CHGREC loaded (0 rows)
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_CHGREC_ERR
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_CHGREC_ERR created
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_CHGREC_ERR loaded (0 rows)
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_ELEM_CB
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_ELEM_CB created
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_ELEM_CB loaded (0 rows)
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_ELEM_IB
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_ELEM_IB created
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_ELEM_IB loaded (0 rows)
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_ELEM_KEY
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_ELEM_KEY created
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_ELEM_KEY loaded (0 rows)
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_ELEM_NAME
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_ELEM_NAME created
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_ELEM_NAME loaded (0 rows)
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_PARAM
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_PARAM created
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_PARAM loaded (82 rows)
    25.09.06 18:43:29 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_PUBA
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_PUBA created
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_PUBA loaded (0 rows)
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_SESSION
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_SESSION created
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_SESSION loaded (0 rows)
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_STAT
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_STAT created
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_STAT loaded (0 rows)
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_TAXONOMY
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_TAXONOMY created
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_TAXONOMY loaded (0 rows)
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_THREAD
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_THREAD created
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_THREAD loaded (0 rows)
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_UDDI_TM_MAIN
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: table BC_UDDI_TM_MAIN created
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: BC_UDDI_TM_MAIN loaded (0 rows)
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_WA_GROUP
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: table BC_WA_GROUP created
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: BC_WA_GROUP loaded (0 rows)
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_WA_SYSTEM
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: table BC_WA_SYSTEM created
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: BC_WA_SYSTEM loaded (0 rows)
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_WA_SYS_TO_GROUP
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: table BC_WA_SYS_TO_GROUP created
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: BC_WA_SYS_TO_GROUP loaded (0 rows)
    25.09.06 18:43:30 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_WA_USER
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: table BC_WA_USER created
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: BC_WA_USER loaded (0 rows)
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_XMLA_ASESSIONS
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: table BC_XMLA_ASESSIONS created
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: BC_XMLA_ASESSIONS loaded (0 rows)
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_XMLA_ASETS
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: table BC_XMLA_ASETS created
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: BC_XMLA_ASETS loaded (6 rows)
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_XMLA_COL
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: table BC_XMLA_COL created
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: BC_XMLA_COL loaded (1 rows)
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_XMLA_COL_INDEX
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: table BC_XMLA_COL_INDEX created
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: BC_XMLA_COL_INDEX loaded (0 rows)
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_XMLA_COL_STORE
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: table BC_XMLA_COL_STORE created
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: BC_XMLA_COL_STORE loaded (0 rows)
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_XMLA_CONFIG
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: table BC_XMLA_CONFIG created
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: BC_XMLA_CONFIG loaded (0 rows)
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_XMLA_INDEX_COLS
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: table BC_XMLA_INDEX_COLS created
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: BC_XMLA_INDEX_COLS loaded (0 rows)
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_XMLA_INDEX_DICT
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: table BC_XMLA_INDEX_DICT created
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: BC_XMLA_INDEX_DICT loaded (0 rows)
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_XMLA_LOCKING
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: table BC_XMLA_LOCKING created
    25.09.06 18:43:31 com.sap.inst.jload.Jload dbImport
    INFO: BC_XMLA_LOCKING loaded (0 rows)
    25.09.06 18:43:33 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_XMLA_MAXIDS
    25.09.06 18:43:33 com.sap.inst.jload.Jload dbImport
    INFO: table BC_XMLA_MAXIDS created
    25.09.06 18:43:33 com.sap.inst.jload.Jload dbImport
    INFO: BC_XMLA_MAXIDS loaded (5 rows)
    25.09.06 18:43:33 com.sap.inst.jload.Jload dbImport
    INFO: trying to create table BC_XMLA_NAMESPACES
    25.09.06 18:43:33 com.sap.inst.jload.Jload dbImport

Maybe you are looking for

  • How can i use an external screen on mountain lion when i'm running on battery power?

    Hey all: I just upgraded from snow leopard to Mountain Lion, and i use external screen, keyboard and mouse all the time.... On Mountain Lion it's perfect when the power adaptor is connected as soon as you close the LID your external screen becomes th

  • Using wildcard in If statement

    Hi. I have 2 part numbers I'm trying to find and I just want to display the text below on these 2 parts only. The 2 part numbers are: PL-PLCC44-S-01TR PL-PLCC68-S-01TR This is not on a search page, so the Like command does not work.I created this If

  • Stop Aperture from auto launching when connecting an iPhone

    Recently installed Aperture 3. The library sits on an external which is connected to the computer via firewire. Every now and then (3 times in the last 12 hours), Aperture launches without being told to. Quite annoying. Does anyone have a fix? Thanks

  • Exporting Contact and Calendar Data

    Help, My son son recently upgraded and passed me his 3G phone. He has asked if I can export his contacts information to something like a csv file. I have no idea how to do this (and neither has he) so can anyone help please.

  • Help! where to find universal automator actions?

    I've been playing around with Automator lately and suddenly crashed into an error after downloading a new action (create new mail message) from: http://automator.us/ It's saying it won't work because it's not universal. Does anyone know where to find