Search found 3 matches

by cnorris
Thu Jun 09, 2011 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Relational Stage Timing out on SQLServer
Replies: 0
Views: 1090

Dynamic Relational Stage Timing out on SQLServer

We have a SQLServer procedure that runs for about 40 minutes every evening when executed by a batch job. We would like to run the procedure via a DataStage job for special table reloads during the day. When we call it from the after sql routine in DRS it runs for about 10 minutes then ends with no e...
by cnorris
Tue Apr 27, 2004 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to debug Phantom?
Replies: 7
Views: 2948

I suggest you set a default value for Ans before you start. My guess is that you are getting values other than the ones you have programed for. CN Here is the code I am using in the routine: I couldn't see anything wrong in here. deffun CheckVal(Arg1,Arg2) if Arg2 = "1" then if Arg1="...
by cnorris
Thu Mar 11, 2004 8:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do we capture duplicate records
Replies: 11
Views: 5097

could use a stage variable

Another way is to create a variable to hold the last key value and then compare the old and new key variables to set a flag to be evaluated by the constraint part of a transform, the duplicate row could be sent to a flat file for reporting.
CN