Search found 42189 matches

by chulett
Tue Aug 05, 2008 9:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup against hashed FILE
Replies: 2
Views: 1039

Exactly. And that's literally the only change you need to make after you copy it to a new name.
by chulett
Tue Aug 05, 2008 9:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get rid of new line return in Datastage basic code
Replies: 9
Views: 1860

Put @FM where you have " ".
by chulett
Tue Aug 05, 2008 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Loop - Restartability
Replies: 4
Views: 1044

I know it will. I've tested this and watched it go back to the iteration it failed on when restarted. I was shocked when it did this, fully expecting to have to code something in, but it wasn't needed. :wink:
by chulett
Tue Aug 05, 2008 4:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-01461
Replies: 9
Views: 1592

Then it seems you need to report this as a bug, see if this is a known issue and if there is patch available for it.
by chulett
Tue Aug 05, 2008 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Loop - Restartability
Replies: 4
Views: 1044

That will happen automatically if you make the Sequence restartable - i.e. enable checkpoints.
by chulett
Tue Aug 05, 2008 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Table definitions import issue
Replies: 3
Views: 2000

For PX you should be using the PX-specific tool, sorry but I don't recall the exact name or syntax off the top of my head. :(
by chulett
Tue Aug 05, 2008 1:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort a sequencer using a server routine
Replies: 7
Views: 1660

Chuck explained how to do that.
by chulett
Tue Aug 05, 2008 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort a sequencer using a server routine
Replies: 7
Views: 1660

Chuck explained how to do that.
by chulett
Tue Aug 05, 2008 1:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort a sequencer using a server routine
Replies: 7
Views: 1660

No. S1 needs to notice that S2 aborted and then abort itself.
by chulett
Tue Aug 05, 2008 1:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: StageVar
Replies: 10
Views: 3338

Assign a number to each "group" of input records. Build a hashed file with the group number and "Label" for each 07. Run back through the data and use the group number to get the label for the group.
by chulett
Tue Aug 05, 2008 12:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Table definitions import issue
Replies: 3
Views: 2000

What tool are you using for importing?
by chulett
Tue Aug 05, 2008 12:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: StageVar
Replies: 10
Views: 3338

I don't see how you would do something like this without making two passes through the data. :? But with two passes it wouldn't be all that hard.
by chulett
Tue Aug 05, 2008 12:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: space as parameter of dsjob -run
Replies: 6
Views: 3188

For an "optional" parameter, you are much better off (IMHO) leaving the default empty and only supplying a value when it is actually needed. If you can.
by chulett
Tue Aug 05, 2008 12:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: space as parameter of dsjob -run
Replies: 6
Views: 3188

Or set the default value in the job to a space and then don't mention the parameter name/value pair on the command line.
by chulett
Tue Aug 05, 2008 11:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routine to wait for file
Replies: 3
Views: 1209

My point is you don't need a routine to "wait for file" as you know the name to wait for, there are no unknown components like time. So the normal WFF stage can be used in a normal Sequence job. Write a routine to turn the current date into the variable part of the filename and leverage that as a pa...