Search found 53125 matches
- Wed Nov 02, 2011 6:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job finished succesfully with fatal error
- Replies: 5
- Views: 1742
- Wed Nov 02, 2011 6:27 pm
- Forum: General
- Topic: How to call week day from date function in JOB SEQUENCE
- Replies: 2
- Views: 2667
- Tue Nov 01, 2011 9:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: scd stage
- Replies: 3
- Views: 875
- Tue Nov 01, 2011 9:48 pm
- Forum: General
- Topic: Access Duration
- Replies: 11
- Views: 3214
- Tue Nov 01, 2011 5:31 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: transformer lookup
- Replies: 16
- Views: 4290
- Tue Nov 01, 2011 5:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Bind20: Command not found
- Replies: 14
- Views: 6837
- Tue Nov 01, 2011 5:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Audit Table
- Replies: 15
- Views: 7595
- Tue Nov 01, 2011 5:25 pm
- Forum: General
- Topic: Mapping Oracle Table Definitions
- Replies: 10
- Views: 6987
DSGetLinkMetadata() is documented on page 96 of the DataStage Programmer's Guide. It returns a dynamic array. You don't actually have to count anything. Here's how I'd approach it. * assuming JOBCONTROL.H is included Result = DSGetLinkMetadata(hJob, StageName, LinkName) ColumNames = Result<1> KeyCol...
- Tue Nov 01, 2011 12:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to Populate NULLS in plac
- Replies: 2
- Views: 1233
- Tue Nov 01, 2011 12:48 pm
- Forum: General
- Topic: Access Duration
- Replies: 11
- Views: 3214
- Tue Nov 01, 2011 12:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Auto vs Entire partition in reference link
- Replies: 1
- Views: 1032
- Tue Nov 01, 2011 12:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Padding 0's
- Replies: 11
- Views: 4236
Even more efficient (not evaluating the Space() function every row is to evaluate it when initializing a stage variable, or simply use a literal.
Code: Select all
Right(" " : inputstring, 20)- Tue Nov 01, 2011 12:41 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Cannot find a 'job started' record in job log
- Replies: 3
- Views: 2605
- Tue Nov 01, 2011 12:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Abnormal termination of stage Map detected
- Replies: 11
- Views: 2909
- Tue Nov 01, 2011 12:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Count of parallel instances that are running
- Replies: 1
- Views: 962
Code: Select all
DSGetJobInfo(hJob, DSJ.JOBINVOCATIONS)