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.  LONG RAW and BLOB

    Posted Wed March 02, 2005 05:51 PM

    Hi,

    webMethods uses LONG RAW data type in it’s oracle schemas a lot, from the old ATC Schema to new BAM solutions.

    Anyone knows advantage of using LONG RAW over BLOB? my dba find LONG RAW a trouble to handle in large databases


    #webMethods-Architecture
    #Integration-Server-and-ESB
    #webMethods-General
    #webMethods


  • 2.  RE: LONG RAW and BLOB

    Posted Tue May 24, 2005 04:14 PM

    Hi chirag_sanghavi,
    The LONG RAW data type stores raw data of up to 32760 bytes which is 7 bytes lower than
    VARCHAR2 data type in oracle. The main difference between these two data type is that the
    data in a LONG RAW variable is not interpreted by PL/SQL.This means that Oracle will not
    perform character set conversions on RAW data when it is moved from one system
    (based, for example, on 7-bit ASCII) to another system. This improves the performance as there is
    no overhead of character set conversions.
    Whereas,the BLOB data type is used to store large binary objects “out of line” inside the
    database. A BLOB variable contains a locator, which then points to the large binary object.
    BLOBs can be up to four gigabytes in size, and they participate fully in transactions.

    Hope this helps.

    Thanks,
    RKK


    #webMethods-General
    #webMethods-Architecture
    #Integration-Server-and-ESB
    #webMethods


  • 3.  RE: LONG RAW and BLOB

    Posted Tue May 24, 2005 07:34 PM

    Hi Kishore,

    Thanks for providing the info.
    I wonder, why webMethods continues to use LONG RAW for storing critical information…


    #webMethods-Architecture
    #Integration-Server-and-ESB
    #webMethods
    #webMethods-General