Java edition bulk read

Am I right in understanding that there is no way to do bulk reads in the Java version of BDB like there is in the c version? That is, in the c version one can specify DB_MULTIPLE_KEY as a Cursor parameter, and then have a large buffer filled with multiple records. This does not seem to be possible in the Java version.
Thanks!

Correct.

Similar Messages

  • Can Berkeley DB Java Edition read BDB created with C

    Hi,
    If I use C to create a BDB database and store the values. Can I use Berkeley DB Java Edition to open and read the content? I am trying to do search and reversed order display and it seems like only DB java Edition has that feature.
    Is that correct?
    Thanks for all your help and suggestion.
    juan

    Hello,
    You will not be able to do that. BDB Java Edition and Berkeley DB are not the same product.
    Thanks,
    Sandra

  • Performance DB vs Java Edition

    Hi there,
    we've been investigating wether a (and when which) NoSQL-DB outperforms a standard SQL solution for our usecase:
    500.000 records bulk insert
    2k - 5k per record
    With 2 Indices
    Using Java API
    Multi OS: Linux, Windows, z/OS
    Berkeley DB performed best (bulk insert, selects and deletes) on our Windows-Tests (with 2GB memory).
    Unfortunately theres a huge gap between Berkley DB and its Java Edition performance.
    For a 20.000 record chunk insert Berkeley DB (using BTREE) takes 2000 - 3500 ms. When the cache is full and the first cache misses appear the inserting time grows and stays at arround 8000 ms. After a while st_cacheMiss decreases again resulting in 2000 - 3500 ms per insert.
    The JE starts with 4500 - 5000 ms per insert. After the first 200.000 records the cache is full and the nCacheMiss grows rapidly along with the inserting time (11s, 13s, 16s, ... 30s and even longer). There is no constancy like the non Java version shows to have.
    Is there any way to reach the Berkeley DB's performance with the JE? Esp. the constant insert time.
    We've tried already different CacheModes but default mode is the best.
    Setting je.log.faultReadSize=5120 leads to a slighter better perfomance, but still the inserting gets slower and slower.
    Since we need z/OS support we'd prefer to use the JE.
    Thanks for any help.
    Jonas

    Hello Jonas,
    Glad you found the main problem.
    I don't find it's productive to compare the two products' performance as they are so different, but I can help with tuning BDB JE.
    The first step is to take a look at the performance section of the FAQ:
    http://www.oracle.com/technetwork/database/berkeleydb/je-faq-096044.html
    If you have further questions on tuning please be sure to post:
    + Your EnvironmentConfig settings and je.properties (if any)
    + Your DatabaseConfig or StoreConfig settings.
    + A couple dumps of the EnvironmentStats covering the performance test time period, and be sure to clear the stats each time with StatsConfig.setClear(true).
    This is just the starting info for doing any sort of tuning with JE.
    I'm surprised that CacheMode.EVICT_LN didn't help, since moving the LNs out of cache immediately should reduce the burden on the evictor and Java GC. If you don't have enough cache to hold all LNs (see the FAQ entry on DbCacheSize), then EVICT_LN is usually beneficial. If you use EVICT_LN, be sure to also set EnvironmentConfig.CLEANER_LAZY_MIGRATION to false. Lazy migration retains LNs in cache and partially negates the benefits of EVICT_LN.
    As described in the FAQ, be sure your cache size is large enough to hold the BINs.
    The deferred-write mode is sometimes a win for bulk loading, but if you are doing pure insertions it may not help.
    I suggest enlarging these ENVIRONMENT_CONFIG settings if you haven't already:
    CLEANER_LOOK_AHEAD_CACHE_SIZE - try 1MB
    CLEANER_READ_SIZE - try 1MB
    See Durability if your database/store is transactional. Using NO_SYNC durability is much faster of course, but there are trade-offs. NO_SYNC is the default for a non-transactional database/store.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Can multiple threads share the same cursor in berkeley db java edition?

    We use berkeley db to store our path computation results. We now have two threads which need to retrieve records from database. Specifically, the first thread accesses the database from the very beginning and read a certain number of records. Then, the second thread needs to access the database and read the rest records starting from the position where the cursor stops in the first thread. But, now, I cannot let these two threads share the same cursor. So, I have to open the database separately in two threads and use individual cursor for each thread. This means I have to in the second thread let the cursor skip the first certain number of records and then read the rest records. However, in this way, it is a waste of time letting the second thread skip a certain of records. It will be ideal for us that the second thread can start reading the record just from the place where the first thread stops. Actually, I have tried using transactional cursor and wanted to let the two threads share the same transactional cursor. But it seems that this didn't work.
    Can anyone give any suggestion? Thank you so much!
    sgao

    If your question is really about using the BDB Java Edition product please post to the JE forum:
    Berkeley DB Java Edition
    If your question is about using the Java API of the BDB (C-based) product, then this is the correct forum.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Java edition compatible with standard edition?

    Hi
    I have a database created using Java edition 3.2.44
    I want to write an application in C++ which reads this database using the standard Berkeley DB (possibly at the same time as the java application is also accessing them). Are the database files compatible?
    I'm not too hopeful since the the database files are named something like 00000000.jdb and je.lck.
    Any help appreciated
    Nick

    Hi Nick,
    This FAQ entry addresses this question:
    [http://www.oracle.com/technology/products/berkeley-db/faq/je_faq.html#2|http://www.oracle.com/technology/products/berkeley-db/faq/je_faq.html#2]
    (a small additional information to this entry is that DPL API has been introduced for BDB as well in 4.7.25)
    As explained, the on-disk format for the database files is different. You should dump the database created with JE (using the DbDump/com.sleepycat.je.util.DbDump utility: [http://www.oracle.com/technology/documentation/berkeley-db/je/java/com/sleepycat/je/util/DbDump.html|http://www.oracle.com/technology/documentation/berkeley-db/je/java/com/sleepycat/je/util/DbDump.html]) and load it using BDB before opening it in a a program using one of the BDB APIs (using the db_load utility: [http://www.oracle.com/technology/documentation/berkeley-db/db/utility/db_load.html|http://www.oracle.com/technology/documentation/berkeley-db/db/utility/db_load.html] )
    If you face any issues with dumping/loading the database let me know.
    Regards,
    Andrei

  • DB High Availability - Java Edition

    I am using Berkeley DB Java Edition to do writes and reads to my database. I am planning on having a cluster of databases with HA feature. I noticed that the feature set for Berkeley DB Java Editon does not include High Availabilty.
    I did check the C example code that is available in the 4.4 version. I understand that I need to build a communication infrastructure in Java for master and replicated db's. Is there any example that I can follow, or any other materials available for doing HA in Java?

    I believe the answer in java replication example is relevant for you.
    <p>
    Please note that you should be able to build the communication infrastructure in C, and then still access DB via the Java interface layer from your Java program. (I.e., your communication infrastructure doesn't have to be in Java.)
    <p>
    Also, I hope it's clear that Berkeley DB Java Edition is a separate product. This is different from using Berkeley DB via its Java interface layer.
    <p>
    Alan Bram<br>
    Oracle

  • Compatibility issues between Berkeley DB Java Edition and Berkeley DB

    We are trying to use both Berkeley DB Java Edition and Berkeley DB (Java/C) in one of our projects. However, they share the common classes (i.e. EntryDingin.java), but with their own different impementation. Is there any reason that they have to share the same names/packages? Can we request to have the shared java classes going into different packages?
    Thanks
    Yao

    Hello Yao,
    You're correct and the DB and JE products were not designed to run under the same classloader in the same JVM. It is very unlikely that we'll be changing the package names, since that would be very disruptive and yet have no value for the overwhelming majority of users. We will note your request, however, for future reference.
    The two workarounds I know of are:
    1. Use a separate classloader for the use of each product.
    2. Use a tool such as jarjar links (http://code.google.com/p/jarjar/) to rename the packages in one or both of the products.
    Option 2 is not something we (the JE team members) have experience with, but it was used successfully by a JE user. The user also pointed out a bug in the jarjar tool to be aware of: http://code.google.com/p/jarjar/issues/detail?id=21
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Patch Release: Berkeley DB Java Edition 4.0.117

    Berkeley DB Java Edition 4.0.117
    http://www.oracle.com/us/products/database/berkeley-db/index.html
    http://www.oracle.com/technetwork/database/berkeleydb/overview/index.html
    http://www.oracle.com/technetwork/database/berkeleydb/overview/persistence-160890.html
    http://www.oracle.com/technetwork/database/berkeleydb/overview/index-093405.html
    Berkeley DB Java Edition 4.0.117 is a patch release consisting of many important fixes. We strongly recommend that users of the 4.0.x upgrade to this release. Those using 4.1.x need not be concerned with this patch release.
    The critical patch fixes:
    [#19422] - Fixes a bug that prevents recovery if CacheMode.EVICT_BIN is used.
    The complete list of changes is in the change log page.
    http://download.oracle.com/otndocs/products/berkeleydb/html/je/je-40117-changelog.html
    Product documentation can be found at:
    http://download.oracle.com/docs/cd/E17277_02/html/index.html
    Download the source code including the pre-compiled JAR, complete documentation, and the entire test suite as a single package.
    http://download.oracle.com/berkeley-db/je-4.0.117.zip
    http://download.oracle.com/berkeley-db/je-4.0.117.tar.gz
    Common questions are addressed in our FAQ that you can find here:
    http://www.oracle.com/technetwork/database/berkeleydb/je-faq-096044.html
    Then join OTN and participate in the Berkeley DB JE Support Forum discussions. Our engineering and support staff are highly active on these forums, if you have questions please ask them there first.
    Berkeley DB Java Edition
    For further information, or questions about licensing and sales of JE, please contact us at:
    mailto:[email protected]
    Thank you for your support of Berkeley DB Java Edition.

    Hi Kristoffer,
    We have never updated Maven central -- I think someone else, perhaps who is reading the forum, did that for 5.0.73.  We should update it, but we don't quite have our act together on that.  Hopefully we'll have more info on that soon, but for now you'll need to just copy the jar file or use the Oracle maven repo.
    You should definitely read the release notes and the change log, and decide whether to upgrade.
    BDB has both a commercial and an OSS license.  Due to Oracle policy BDB does not have some of the things you might expect from an OSS project:
    - bug system is not exposed
    - roadmap is not published
    - code contributions are fairly rare, mostly due to the nature of the code -- it's a database engine, and is fairly difficult to change casually.
    What other questions about the process do you have?  I wasn't sure exactly what you wanted to know.
    --mark

  • Oracle Berkeley DB Java Edition High Availability (White Paper)

    Hi all,
    I've just read Oracle Berkeley DB Java Edition High Availability White Paper
    http://www.oracle.com/technetwork/database/berkeleydb/berkeleydb-je-ha-whitepaper-132079.pdf
    In section "Time Consistency Policy" (Page 18) it is written:
    "Setting a lag period that is too small, given the load and available hardware resources, could result in
    frequent timeout exceptions and reduce a replica's availability for read operations. It could also increase
    the latency associated with read requests, as the replica makes the read transaction wait so that it can
    catch up in the replication stream."
    Can you tell me why those read operations will not be taken by the master ?
    Why will we have frequent timeout ?
    Why should read transaction wait instead of being redirect to the master ?
    Why should it reduce replica's availability for read operations ?
    Thanks

    Please post this question on the Berkeley DB Java Edition (BDB JE) forum Berkeley DB Java Edition. This is the Berkeley DB Core (BDB) forum.
    Thanks,
    Andrei

  • Berkeley DB Java Edition (JE) and JRuby Interoperability

    I finally got around to doing a quick test of calling Berkeley DB Java Edition (JE) from JRuby (JRuby is a 100% pure-Java implementation of Ruby).
    Before we get to JE and JRuby you probably want to know the answer to this question: "Why you would want to run Ruby on a JVM?" The answer is threefold:
    1. Ruby Performance. A large amount of effort has been put into tuning contemporary JVMs (e.g. Hotspot, Java 6, etc.) and Ruby programmers (through JRuby) can benefit from these tuning efforts. The JRuby guys have set a goal to make JRuby the fastest Ruby implementation available and Sun is certainly throwing their weight behind that effort.
    2. Portability. JRuby is a Ruby interpreter that runs anywhere a Java 5 JVM runs. You download it as a single tar.gz and it will run pretty much anywhere.
    3. Legacy Code. JRuby makes legacy Java apps and libraries available to Ruby programmers (did you ever think you'd see the word "legacy" next to the word "Java"?).
    JE interoperability with JRuby is important because it means that Ruby programmers now have a simple, embeddable, ACID storage engine (JE) available to them.
    To test this interoperability, I cobbled together a simple Ruby test program which does the following:
    * Opens an Environment, Database, and Transaction
    * Creates 10 records with keys 1..10 and marshaled Ruby Time instances as the corresponding data. This uses the Ruby Marshal package for the data binding and the JE Integer binding on the key side. There's no reason why you couldn't use different marshaling packages or methods for keys and data.
    * Commits the transaction,
    * Performs a Cursor scan to read those 10 records and prints out the Time instances, and
    * Searches for and reads the record with key 5 (an arbitrary key) and prints out the Time instance that is the corresponding data
    By the way, hats off to the JRuby developers: all of this code "just worked", out of the box, and most of my two hour investment was spent learning enough basic Ruby to make it all work. If you already know Ruby and JE, then demonstrating this interoperability would take you all of about 10 minutes.
    This was all done at the "base API" level of JE and no modifications to JE were required. I used Transactions in my code, but there's no reason that you need to. Mark and I have been talking about how to integrate JE's Direct Persistence Layer (DPL) with JRuby and we think it can be done with some remodularization of some of the DPL code. This is exciting because it would provide POJO ACID persistence to Ruby programmers.
    Linda and I have been talking about whether it makes sense to possibly use Ruby as a scripting platform for JE in the future. Given how easy it was to bring up JE and JRuby, this certainly warrants some further thought.
    The Ruby code and corresponding output is shown below. By the way, if you see something that I didn't do "The Ruby Way", feel free to let me know.
    I'd love to hear about your experiences with JE and JRuby. Feel free to email me a charles.lamb at <theobviousdomain dot com>.
    require 'java'
    module JESimple
      require 'date'
      # Include all the Java and JE classes that we need.
      include_class 'java.io.File'
      include_class 'com.sleepycat.je.Cursor'
      include_class 'com.sleepycat.je.Database'
      include_class 'com.sleepycat.je.DatabaseConfig'
      include_class 'com.sleepycat.je.DatabaseEntry'
      include_class 'com.sleepycat.je.Environment'
      include_class 'com.sleepycat.je.EnvironmentConfig'
      include_class 'com.sleepycat.je.OperationStatus'
      include_class 'com.sleepycat.je.Transaction'
      include_class 'com.sleepycat.bind.tuple.IntegerBinding'
      include_class 'com.sleepycat.bind.tuple.StringBinding'
      # Create a JE Environment and Database.  Make them transactional.
      envConf = EnvironmentConfig.new()
      envConf.setAllowCreate(true)
      envConf.setTransactional(true)
      f = File.new('/export/home/cwl/work-jruby/JE')
      env = Environment.new(f, envConf);
      dbConf = DatabaseConfig.new()
      dbConf.setAllowCreate(true)
      dbConf.setSortedDuplicates(true)
      dbConf.setTransactional(true)
      db = env.openDatabase(nil, "fooDB", dbConf)
      # Create JE DatabaseEntry's for the key and data.
      key = DatabaseEntry.new()
      data = DatabaseEntry.new()
      # Begin a transaction
      txn = env.beginTransaction(nil, nil)
      # Write some simple marshaled strings to the database.  Use Ruby
      # Time just to demonstrate marshaling a random instance into JE.
      for i in (1..10)
        # For demonstration purposes, use JE's Binding for the key and
        # Ruby's Marshal package for the data.  There's no reason you
        # couldn't use JE's bindings for key and data or visa versa or
        # some other completely different binding.
        IntegerBinding.intToEntry(i, key)
        StringBinding.stringToEntry(Marshal.dump(Time.at(i * 3600 * 24)),
                                    data)
        status = db.put(txn, key, data)
        if (status != OperationStatus::SUCCESS)
          puts "Funky status on put #{status}"
        end
      end
      txn.commit()
      # Read back all of the records with a cursor scan.
      puts "Cursor Scan"
      c = db.openCursor(nil, nil)
      while (true) do
        status = c.getNext(key, data, nil)
        if (status != OperationStatus::SUCCESS)
          break
        end
        retKey = IntegerBinding.entryToInt(key)
        retData = Marshal.load(StringBinding.entryToString(data))
        dow =
        puts "#{retKey} => #{retData.strftime('%a %b %d')}"
      end
      c.close()
      # Read back the record with key 5.
      puts "\nSingle Record Retrieval"
      IntegerBinding.intToEntry(5, key)
      status = db.get(nil, key, data, nil)
      if (status != OperationStatus::SUCCESS)
        puts "Funky status on get #{status}"
      end
      retData = Marshal.load(StringBinding.entryToString(data))
      puts "5 => #{retData.strftime('%a %b %d')}"
      db.close
      env.close
    end
    Cursor Scan
    1 => Fri Jan 02
    2 => Sat Jan 03
    3 => Sun Jan 04
    4 => Mon Jan 05
    5 => Tue Jan 06
    6 => Wed Jan 07
    7 => Thu Jan 08
    8 => Fri Jan 09
    9 => Sat Jan 10
    10 => Sun Jan 11
    Single Record Retrieval
    5 => Tue Jan 06

    In my previous post (Berkeley DB Java Edition in JRuby), I showed an example of calling JE's base API layer and mentioned that Mark and I had been thinking about how to use the DPL from JRuby. Our ideal is to be able to define classes in Ruby, annotate those class definitions with DPL-like annotations, and have the JE DPL store them. There are a number of technical hurdles to overcome before we can do this. For instance, Ruby classes defined in JRuby do not map directly to underlying Java classes; instead they all appear as generic RubyObjects to a Java method. Granted, it would be possible for the DPL to fish out all of the fields from these classes using reflection, but presently it's just not set up to do that (hence the modification to the DPL that I spoke about in my previous blog entry). Furthermore, unlike Java, Ruby allows classes to change on the fly (add/remote new fields and methods) causing more heartburn for the DPL unless we required that only frozen Ruby classes could be stored persistently.
    On thinking about this some more, we realized that there may be a way to use the DPL from JRuby, albeit with some compromises. The key to this is that in JRuby, if a Java instance is passed back to the "Ruby side" (e.g. through a return value or by calling the constructor for a Java class), it remains a Java instance, even when passed around in JRuby (and eventually passed back into the "Java side"). So what if we require all persistent classes to be defined (i.e. annotated) on the Java side? That buys us the standard DPL annotations (effectively the DDL), freezes the classes that the DPL sees, and still lets us benefit from the POJO persistence of the DPL. All of this can be done without modification to JE or the DPL using the currently available release. I cooked up a quick example that builds on the standard "Person" example in the DPL doc and included the code below.
    require 'java'
    module DPL
      require 'date'
      # Include all the Java and JE classes that we need.
      include_class 'java.io.File'
      include_class 'com.sleepycat.je.Environment'
      include_class 'com.sleepycat.je.EnvironmentConfig'
      include_class 'com.sleepycat.persist.EntityCursor'
      include_class 'com.sleepycat.persist.EntityIndex'
      include_class 'com.sleepycat.persist.EntityStore'
      include_class 'com.sleepycat.persist.PrimaryIndex'
      include_class 'com.sleepycat.persist.SecondaryIndex'
      include_class 'com.sleepycat.persist.StoreConfig'
      include_class 'com.sleepycat.persist.model.Entity'
      include_class 'com.sleepycat.persist.model.Persistent'
      include_class 'com.sleepycat.persist.model.PrimaryKey'
      include_class 'com.sleepycat.persist.model.SecondaryKey'
      include_class 'com.sleepycat.persist.model.DeleteAction'
      include_class 'persist.Person'
      include_class 'persist.PersonExample'
      # Create a JE Environment and Database.  Make them transactional.
      envConf = EnvironmentConfig.new()
      envConf.setAllowCreate(true)
      envConf.setTransactional(true)
      f = File.new('/export/home/cwl/work-jruby/JE')
      env = Environment.new(f, envConf);
      # Open a transactional entity store.
      storeConfig = StoreConfig.new();
      storeConfig.setAllowCreate(true);
      storeConfig.setTransactional(true);
      store = EntityStore.new(env, "PersonStore", storeConfig);
      class PersonAccessor
        attr_accessor :personBySsn, :personByParentSsn
        def init(store)
          stringClass = java.lang.Class.forName('java.lang.String')
          personClass = java.lang.Class.forName('persist.Person')
          @personBySsn = store.getPrimaryIndex(stringClass, personClass)
          @personByParentSsn =
            store.getSecondaryIndex(@personBySsn, stringClass, "parentSsn");
        end
      end
      dao = PersonAccessor.new(store)
      dao.init(store)
      personBySsn = dao.personBySsn
      person = Person.new('Bob Smith', '111-11-1111', nil)
      personBySsn.put(person);
      person = Person.new('Mary Smith', '333-33-3333', '111-11-1111')
      personBySsn.put(person);
      person = Person.new('Jack Smith', '222-22-2222', '111-11-1111')
      personBySsn.put(person);
      # Get Bob by primary key using the primary index.
      bob = personBySsn.get("111-11-1111")
      puts "Lookup of Bob => #{bob.name}, #{bob.ssn}"
      children = dao.personByParentSsn.subIndex(bob.ssn).entities()
      puts "\nRetrieving children of Bob"
      while (true) do
        child = children.next()
        break if child == nil
        puts "#{child.name}, #{child.ssn}"
      end
      children.close()
      store.close
      env.close
    end

  • Berkeley DB Java Edition 3.3.69 is available

    Berkeley DB Java Edition (JE) 3.3.69 is now available for download. The release contains a number of bug fixes, some to problems posted on the OTN forum. The full list of changes may be found in the change log.
    <br>
    <br>
    There is one critical bug fix in this release, described in the change log as follows:
    <br>
    <br>
    "Fix a bug that prevents opening an Environment as read-only under certain circumstances, or causes queries in a read-only Environment to return out of date, and possibly transactionally incorrect, data. The LogFileNotFoundException may be thrown when the problem occurs. [#16368]"
    <br>
    <br>
    This is a fix to a bug that was introduced in JE 3.3.62. If you are currently using 3.3.62 and you are opening the Environment read-only or using the DbDump utility (which opens the Environment read-only), then we strongly recommend that you upgrade to JE 3.3.69.
    <br>
    <br>
    The corresponding Maven POM will be available in a few days.
    <br>
    <br>
    If you are using the JE wrapper plugin for your own Eclipse plugin development AND you open the Environment read-only, you should update that package through
    download.oracle.com/berkeley-db/eclipse. Other DPL Assistant users can consider the update to be optional.

    Morgan,
    Yes, we currently plan to only offer replication for Java 1.5. Our motivations are split between the speed consideration and the codeline issues. We've seen better performance with 1.5. Also taking full advantage of the type safety and concurrent support in 1.5 can end up affecting implementation choices significantly, and can make 1.4 code and 1.5 code diverge a lot.
    As for bug fixing on the 1.4 releases, we don't yet have an official plan. We care very much about supporting our open source users and have been able to provide backwards patches where critical in the past. However, the cost of backporting between 1.5 and 1.4 may be high for some bug fixes, and we'll probably have to decide case by case.
    Regards,
    Linda

  • 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

  • Installing 9iAS Java Edition 9.0.3 on RedHat Linux 8.0, 7.2

    Hi,
    Iam trying to install oracle 9iAS Java Edition 9.0.3 on RedHat Linux 8.0 and 7.2. But i have common problems during installation.
    I get the following error while installing -
    Error in invoking target install of makefile
    /home/oracle/servers/9ias/sqlplus/lib/ins_sqlpluslib.mk
    Error in invoking target install of makefile
    /home/oracle/servers/9ias/network/lib/ins_oemagent.mk
    Similarly i get one more error. I dont remember the actual file name.
    Once i ignore all these errors then the OC4J instance configuration assistant and OPMN assistant do not start. They have some deployment problems during installation.
    After the installation is complete with certain problems, i try to start all the services of DCM, using dcmctl start command
    /home/oracle/servers/9ias/dcm>dcmctl start.
    The other services start except the HTTP server. I get the error ADMN-906025
    Iam not able to start the Oracle Enterprise Manager (OEM)
    also...
    Kindly give me the exact steps to overcome this problem or a link to some documentation...please
    Its very urgent...
    regards,
    Sachin Bafna

    Repost:

  • Should i use the Java edition ?

    Hi,
    i'm not sure if i should use the Java edition or the "normal" edition of the berkeley db.
    My application is developed in Java, but i won't be using either JTA, JCA or JMX.
    Is there still any advantage to be taken from using the Java edition ?
    Thanks

    There are many minor differences, e.g., JE has somewhat better write performance, DB uses somewhat less memory, DB has an SQL interface and JE does not. But overall, the two products are very similar, so for most questions you might ask, the answer is going to be "about the same".
    If you want to choose the best product for your app, you'll have to define the very specific criteria that are most important to you. If you care most about getting every ounce of performance out of a specific piece of hardware, using a specific amount of memory, for a specific app (access pattern), then you'll have to write a test and do a comparison.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • OAS 10.1.2 Java Edition

    Does anyone know where I can download the OAS 10.1.2.0.0 "Java Edition" in a single download? I cannot find it on the download page of the OAS. Only the full "Enterprise Edition" is available there in 4 cd's...
    Regards,
    Stan

    Solved.
    Instead of importing "oracle.jdbc.driver.*", I import"oracle.jdbc.*" and works fine.
    Thanks anyway.

Maybe you are looking for

  • Error Connecting to TFS 2013 from Oracle PL/SQL using MSSCCI

    Hi, previously we were able to connect to TFS 2008 through MSSCCI. we have MSSCCI 2013 provider, Teamexplorer 2013 andVersion Control Interface installed. While trying to connect to TFS 2013 from ORacle PL/SQL Developer 10.5 through MSSCCI ; there is

  • Airport card no longer detected

    My Powermac G5 (dual 2.0 ghz, summer of 2005) has been running on my wireless network without a hitch until recently when it randomly stopped recognizing my Airport Extreme card after I restarted it following a software update. The card's installed c

  • Linked text boxes and flowing text in iBooks Author

    Flowing text from 1 text box to another works perfectly and pages are automatically added when needed, but what happen if you need 2 separated flowing text boxes? For example one with italian text on the left side and one for english on the right sid

  • UP issue with Disallowed attribute

    I have Given name & Surname in "Exclude passwords that match attribute values" So Jones Ela user is created, UP is set to default, user has 1 grace login, password is expired) User logs in with default, being informed that last grace login was used,

  • WIS 00001 as well as Slow Universe Loading Problem

    Using Business Objects XI Release 2 on Windows XP. After completing a large universe and exporting it, we've been having difficulties with loading the universe in Web Intelligence. In most cases, the users can't seem to get the loading bar past 3/4 o