Search found 42189 matches
- Wed Aug 04, 2010 6:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Variable substitution in Job Control ?
- Replies: 9
- Views: 3560
- Wed Aug 04, 2010 6:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Variable substitution in Job Control ?
- Replies: 9
- Views: 3560
- Wed Aug 04, 2010 6:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Setting Parallel in Oracle Bulk Load
- Replies: 3
- Views: 1354
- Wed Aug 04, 2010 6:26 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: To remove previous job logs
- Replies: 11
- Views: 3126
Nothing posted but did find this in my archives, hopefully Ken doesn't mind it gettting posted here. Be careful with this as it could destroy more than it fixes if you get something wrong. Also note it was create for versions prior to 8.x so no guarantees with the latest and greatest. You'll need to...
- Wed Aug 04, 2010 5:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: To remove previous job logs
- Replies: 11
- Views: 3126
- Wed Aug 04, 2010 5:53 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Shared Container - link columns do not match
- Replies: 8
- Views: 5138
- Wed Aug 04, 2010 5:51 am
- Forum: General
- Topic: Regarding Testing of CheckPoint in Sequence
- Replies: 2
- Views: 1473
- Wed Aug 04, 2010 5:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to fire an update query using datastage job?
- Replies: 23
- Views: 15187
- Wed Aug 04, 2010 5:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Variable substitution in Job Control ?
- Replies: 9
- Views: 3560
- Wed Aug 04, 2010 5:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash file Problem
- Replies: 1
- Views: 1298
- Wed Aug 04, 2010 5:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing parameter
- Replies: 5
- Views: 2723
What part are you having a problem with? :? Create two job parameters and include them in your SQL with pound/hash signs like normal. You'll need to create a mechanism to store the last value then retrieve and increment it properly, of course. That could be as simple as a flat file that you read and...
- Wed Aug 04, 2010 5:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to get the last word after space
- Replies: 4
- Views: 2236
One solution: use DCount() to get the number of fields then use that count in the Field() function to get the last field:
Code: Select all
Field(YourField," ",DCount(YourField," "),1)- Tue Aug 03, 2010 5:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to remove special character through transformor stage
- Replies: 2
- Views: 1067
Nothing really special about them so use the Convert() function to remove them:
Off the top of my head.
Code: Select all
Convert("<>","",YourField)- Tue Aug 03, 2010 4:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to fire an update query using datastage job?
- Replies: 23
- Views: 15187
- Tue Aug 03, 2010 4:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: tricky job
- Replies: 10
- Views: 3159
The dsjob Command Line Interface is fully documented, plus has full 'usage' statements if you run it with missing arguments like any good UNIX command. So you need to do some research, as noted check on the following options: dsjob -ljobs dsjob -jobinfo Between those two you'll get everything you ne...