Search found 42189 matches

by chulett
Fri May 14, 2004 1:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Question about UtilityAbortToLog
Replies: 12
Views: 3579

Just a comment on the way we chose to implement things, Kim. No need to throw vegetables. :wink:
by chulett
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...
by chulett
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. :wink:

Try this:

Code: Select all

Oconv(Iconv(DSLink3.HIREDATE[1,10],"D-YMD[4,2,2]"),"D/DMY[2,2,2]")
by chulett
Fri May 14, 2004 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 12
Views: 4155

Actually, one position is off by one and you need quotes: substr(input,9,2):"/":substr(input,6,2):"/":substr(input,3,2) or input[9,2]:"/":input[6,2]:"/":input[3,2] Only substring dates if you have complete confidence in their validity. ...
by chulett
Thu May 13, 2004 4:48 pm
Forum:
Topic: Passing Table Structure As Parameter ?
Replies: 3
Views: 2294

Didn't mean to imply that the longer answers might somehow be different... just a longer way of saying "no". :wink:
by chulett
Thu May 13, 2004 3:12 pm
Forum:
Topic: Passing Table Structure As Parameter ?
Replies: 3
Views: 2294

The short answer is no.

There are longer answers out there as this has been bandied about fairly recently. I'm sure a search would turn them up if I could think of an appropriate keyword or two... :?
by chulett
Thu May 13, 2004 1:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version Control
Replies: 9
Views: 2462

You've probably found what there is - a VersionControl.pdf that covers all of the basics. There's also online help from inside the tool itself, but I think it prety much regurgitates what's in the pdf.

If you have some specific questions that don't seem to be covered there, fire away.
by chulett
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...
by chulett
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...
by chulett
Wed May 12, 2004 9:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reliability of reference streams
Replies: 6
Views: 1990

Can't say that I've ever seen anything like this. :? More details might help...

What are you doing a reference link against - Hash? ODBC? Some native DB stage?
Are you using Custom SQL in your lookups?
How are you checking for success of your lookups?
by chulett
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 ...
by chulett
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 ...
by chulett
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...
by chulett
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

From what I recall (it's been awhile) reading hash files from BASIC takes two steps:

1) a READNEXT to get the Key
2) then a READ using the Key to get the data associated with that key

Seems like you may be only doing the first step. :? Might be prudent to post your code...
by chulett
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 ...