Search found 42189 matches
- Wed Feb 07, 2007 7:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSN not connected
- Replies: 2
- Views: 979
- Tue Feb 06, 2007 9:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to pass UserStatus from Job to Routine?
- Replies: 6
- Views: 1293
As you know, there is no UserStatus for RoutineActivity in Version 7. Because there's no need for that. It is, however, supported for the Job Activity stage. Ray's point was that if you had used a Job Activity stage to run the job in the Sequence, you could have leveraged that to automatically pass...
- Tue Feb 06, 2007 6:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ICONV AND OCONV ON ADJ-
- Replies: 10
- Views: 1624
- Tue Feb 06, 2007 6:14 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: SQL Query
- Replies: 2
- Views: 1034
- Tue Feb 06, 2007 6:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to pass UserStatus from Job to Routine?
- Replies: 6
- Views: 1293
- Tue Feb 06, 2007 6:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get detail error message from Datastage !
- Replies: 4
- Views: 1126
- Tue Feb 06, 2007 5:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: view
- Replies: 7
- Views: 1454
You need to verify the actual number of records available from the view and not perhaps the base tables that make up the view. Views are typically used to constrain output based on whom the view is intended to be used by and to hide any (what could be complex) joins from other processes. Either of t...
- Tue Feb 06, 2007 4:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: triggers
- Replies: 2
- Views: 743
- Tue Feb 06, 2007 4:25 pm
- Forum: Site/Forum
- Topic: Craig did it again, 9K posts
- Replies: 14
- Views: 7463
- Tue Feb 06, 2007 1:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Remote Deployment
- Replies: 1
- Views: 715
- Tue Feb 06, 2007 12:20 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem with the DSGETLINKINFO Function
- Replies: 5
- Views: 2810
No, that parameter is the stage name to query. And the help for DSJ.LINKROWCOUNT says " number of rows that have passed down a link so far ", (emphasis mine) so you should be able to use it in a running job. Now, I've never done that in a PX job, so can't say if there are special caveats with its us...
- Tue Feb 06, 2007 8:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dspackinst - Package installation
- Replies: 11
- Views: 2002
- Tue Feb 06, 2007 8:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: If there is a row rejected, roll back all transation.
- Replies: 3
- Views: 805
- Tue Feb 06, 2007 8:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: KeyMgtGetNextValue
- Replies: 18
- Views: 3019
Sure - as long as you don't need it in a Job Parameter, for use in a database query for example. Create a stage variable. Use a routine to capture the value and call it in the Initial Value column of the variable. That routine could simply 'cat' or 'type' the file and capture the output. It is what ...
- Tue Feb 06, 2007 8:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Return function in datastage routine
- Replies: 6
- Views: 1575
Put any code you are curious about into a 'test' routine in the Administrator and then use the Test functionality there. You may have trouble checking for empty parameters there, so for testing sake change it to check for a recognizable string: If InputArg = 'empty' Then Call DSLogWarn... As to the ...