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.  [ISC.0050.0019V2] Copy failed: No source data available

    Posted Fri July 17, 2009 02:10 AM

    Hi.
    I’m using a flow service which contain a Custom SQL adapter service, which call our oracle database to get the count of Hits got to webMethods for a particular Request type for that Current day and time. The Flow and the adapter service work fine until 5:00 pm in the evening, but after that the adapter service returns No results under its output document list. when i ran taht custom sql directly in the database ( under SQL +) it yields results. But when I ran it from webMethods nothing. when I checked the server Log, following was recorded

    [ISC.0050.0019V2] Copy failed: No source data available.

    This is same case every day.

    Can any one shed some light what exactly happening.
    We are using webMethods 6.5 and oracle 10g


    #Flow-and-Java-services
    #webMethods
    #Integration-Server-and-ESB


  • 2.  RE: [ISC.0050.0019V2] Copy failed: No source data available

    Posted Tue July 21, 2009 05:00 AM

    One scenario to think of is, your IS and Oracle servers are running on different timezones with IS advanced than Oracle and if your query is using any datetimestamp fed from the IS in which case 5PM(IS) becomes a future date in Oracle. Please post the query/inputs, it may give somemore insight for others to help you.


    #webMethods
    #Integration-Server-and-ESB
    #Flow-and-Java-services


  • 3.  RE: [ISC.0050.0019V2] Copy failed: No source data available

    Posted Tue July 21, 2009 08:15 AM

    Do you have any copy condition defined in your code. This error is logged if any copy condition fails(evaluate to false).


    #Flow-and-Java-services
    #webMethods
    #Integration-Server-and-ESB


  • 4.  RE: [ISC.0050.0019V2] Copy failed: No source data available

    Posted Tue July 21, 2009 06:28 PM

    Following is my Adapter Connection details
    Transaction Type NO_TRANSACTION
    DataSource Class oracle.jdbc.pool.OracleDataSource
    serverName: XX
    user XXXXXX
    password ******
    databaseName : XXXXXX
    portNumber 1591
    networkProtocol
    Other Properties driverType=thin
    Enable Connection Pooling true
    Minimum Pool Size 1
    Maximum Pool Size 20
    Pool Increment Size 1
    Block Timeout (msec) 1000
    Expire Timeout (msec) 1000
    Startup Retry Count 0
    Startup Backoff Timeout (sec) 10

    and as per the query select count(*) cnt
    from rqst_trck_info r where
    r.last_updated > to_date(TO_CHAR(current_date,‘DD-MON-YYYY’))
    group by r.rqst_type,r.corporation,r.product_cmpny,r.booking_cmpny

    This Query work stops working from webMethods adapter service but work directly in the database.
    Database version we are using is Oracle 10g


    #webMethods
    #Flow-and-Java-services
    #Integration-Server-and-ESB


  • 5.  RE: [ISC.0050.0019V2] Copy failed: No source data available

    Posted Wed July 22, 2009 07:12 AM

    Why are you using r.last_updated > to_date(TO_CHAR(current_date,‘DD-MON-YYYY’)) ?

    Is there any difference in data type of last_updated and current date ?

    If yes, you should use r.last_updated > to_date(TO_CHAR(r.current_date,‘DD-MON-YYYY’))
    and If not, You should use r.last_updated > r.current_date .


    #Flow-and-Java-services
    #webMethods
    #Integration-Server-and-ESB