IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
  • 1.  JavaLoader unload

    Posted Thu September 27, 2001 12:17 PM

    Hi:

    I have to unload a Tamino database with about 9.000.000 documents and I want do it to some documents(10) with massLoader format.
    How can i do it?
    I try unload all documents to one file but this throws an OutOfMemoryException.
    Can i specify the number of documents i want unload? I need something like “first” and “page_size” params for tamino-xquery.

    Thanks and regards


    #webMethods
    #Tamino
    #API-Management


  • 2.  RE: JavaLoader unload

    Posted Mon October 01, 2001 08:51 AM

    The memory behaviour of the first unload version
    of the Java Loader utility was not very good.
    This has recently been fixed, however, as a
    workaround you can always use the -query option
    to unload smaller parts of your data base.
    E.g.:
    -query ‘/*[@ino:id<100]’

    will unload just those documents from your data
    base with an ino:id value smaller than 100.

    (do not forget to put the query into quotes.
    otherwise your command shell will interprete the
    less sign.)

    Sven Eric


    #webMethods
    #API-Management
    #Tamino


  • 3.  RE: JavaLoader unload

    Posted Tue October 02, 2001 10:54 AM

    Thanks for your help Sven.

    Finally y unload using:
    -query /[@ino:id betw 10000,20000] because it runs faster than /[@ino:id >10000 and ino:id<20000].
    I unload in 900 files because for about 20000 registers by file throws memory exception.

    Thanks and regards.


    #Tamino
    #webMethods
    #API-Management