Search found 42189 matches
- Fri May 14, 2004 1:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Question about UtilityAbortToLog
- Replies: 12
- Views: 3579
- Fri May 14, 2004 12:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Question about UtilityAbortToLog
- Replies: 12
- Views: 3579
I think you have to use it if you have sequences. You need to abort the current sequence and notify the parent sequence that a job failed in the child sequence. Yes, you need to do the notification but we use the "WarnToLog" version instead of the Abort. The child sequence needs to notice the job f...
- Fri May 14, 2004 10:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: date conversion
- Replies: 12
- Views: 4155
It helps when you let people know important things like that up front.
Try this:
Try this:
Code: Select all
Oconv(Iconv(DSLink3.HIREDATE[1,10],"D-YMD[4,2,2]"),"D/DMY[2,2,2]")- Fri May 14, 2004 8:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: date conversion
- Replies: 12
- Views: 4155
- Thu May 13, 2004 4:48 pm
- Forum:
- Topic: Passing Table Structure As Parameter ?
- Replies: 3
- Views: 2294
- Thu May 13, 2004 3:12 pm
- Forum:
- Topic: Passing Table Structure As Parameter ?
- Replies: 3
- Views: 2294
- Thu May 13, 2004 1:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Version Control
- Replies: 9
- Views: 2462
- Thu May 13, 2004 6:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reliability of reference streams
- Replies: 6
- Views: 1990
A question then: some of my jobs do a truncate on a given table - is it possible the DS ignores doing a truncate before inserting rows? No. It (the truncate) should also be logged, from what I recall. The only time I've seen people get in trouble with this is when multiple links write to the same O...
- Wed May 12, 2004 10:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Default Poll Time in the 'Wait For File Activity' stage
- Replies: 6
- Views: 1698
Default Poll Time in the 'Wait For File Activity' stage
Just trying to find out if anyone knows what the "default poll time" is for this stage - ie, how often it checks to see if a file is there or not there. The manual shows that "poll delay time" for the function it calls (DSWaitForFile) can be overriden but the Sequencer code doesn't allow that. In th...
- Wed May 12, 2004 9:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reliability of reference streams
- Replies: 6
- Views: 1990
- Tue May 11, 2004 4:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Get -jobinfo listing for jobs called by a sequence job
- Replies: 8
- Views: 1647
That's true and I probably should have pointed that out. I was specifically looking for the status and other bits of information from jobs that actually ran, typically looking for errors. If, as Ray mentioned, a job was branched around or for any other reason not executed, you wouldn't find it that ...
- Tue May 11, 2004 3:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: oracle error
- Replies: 20
- Views: 8244
Were you ever able to use the OCI stage or is this your first time trying? Load Library errors typically mean the changes required in the "dsenv" file have not been made or are incorrect. Did you setup the appropriate $ORACLE_HOME and make changes to your Shared Library Path environment variable as ...
- Tue May 11, 2004 11:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Does Ascential provide any script to run dsjob?
- Replies: 2
- Views: 1055
You are looking for the dsjob command. It is documented in the Server Job Developers Guide under Command Line Interface and has been discussed quite a bit here. Search the forum and you'll find several examples of "wrapper" scripts you should use in conjunction with it instead of executing it direct...
- Tue May 11, 2004 11:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: What is the field delimiter for Hash files?
- Replies: 10
- Views: 3145
- Tue May 11, 2004 9:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Get -jobinfo listing for jobs called by a sequence job
- Replies: 8
- Views: 1647
I would certainly think you can. I've done it in a routine so I assume something similar can be done in a script. Don't have time right now for a long-winded explanation, but you are on the right track... Use the equivalent of DSGetLogSummary to get the log messages from the Sequencer Job run. Loop ...