Data Source Error Message: Local Data - Out of Context

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
wesselk
Participant
Posts: 1
Joined: Fri Apr 06, 2007 11:40 am

Data Source Error Message: Local Data - Out of Context

Post by wesselk »

We are trying to load data from AS/400 DB2 DB to SQL Server. The DB2 ODBC DSN has been setup on the server. However, when trying to 'view data' the source the job freezes. We tried running with the debugger and I received the following message in Debug Window:

Job Status: Running
Local Data: (Out of Context)

We've been successful loading DB2 data from another box but no luck with this server. Any assistance would be greatly appreaciated!

Thanks,
Kevin Wessel
Weyerhaeuser Company
ray.wurlod
Participant
Posts: 54595
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Welcome aboard (willkommen?) :D

"Out of context" is only meaningful in the debugger. What it means is that you have items on the watch list that are not visible from the point where the debugger is currently paused. Consider the following design.

Code: Select all

Source ---> Tfmr1 ---> Tfmr2 ---> Tfrm3 ---> Target
       LnkA       LnkB       LnkC       LnkD

Say you have placed LnkA.col3 on the watchlist, but have been stepping through the job a link at a time and are currently paused at Tfmr2. LnkA does not connect to Tfmr2, so that LnkA.col3 would be reported as "out of context".
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply