Search found 42189 matches

by chulett
Sat Apr 11, 2009 4:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delays between Job Sequences / Calling Next Job
Replies: 20
Views: 10091

Exactly, and why I asked. The issue and the setting changes you'd need to make (or at least check) are documented here:

viewtopic.php?t=125607
by chulett
Sat Apr 11, 2009 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: complex multivalued xml
Replies: 2
Views: 1193

Why not show us what these flattened out Oracle records would need to look like, ideally using the same data you posting in your XML.
by chulett
Sat Apr 11, 2009 8:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what do &PH, RT_LOGS AND HASHFILE_10 contain?
Replies: 6
Views: 2955

Rather than all of those steps and an interruption on the server, simply set up a cron job to find and delete any file over two days old in the &PH& folder. Set it to run it once a day, everyday, and then forget about it. No need to clear job logs on any kind of regular manual basis either. ...
by chulett
Sat Apr 11, 2009 7:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Small clarfication :Embedding oracle code with Range lookup
Replies: 1
Views: 1061

No, it doesn't. In the OCI stage :2 would represent the second column, anywhere else the second ? in the 'where' clause would be mapped to the second Key column. Meaning, outside of the OCI stage with its numbered bind parameters, you'd need to pass the value in twice to achieve this. FYI.
by chulett
Sat Apr 11, 2009 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what do &PH, RT_LOGS AND HASHFILE_10 contain?
Replies: 6
Views: 2955

The result? :shock: Hmmm, harken back to 1984 for a moment with me... Stantz: Fire and brimstone coming down from the skies! Rivers and seas boiling! Spengler: Forty years of darkness! Earthquakes, volcanoes... Zeddemore: The dead rising from the grave! Venkman: Human sacrifice, dogs and cats living...
by chulett
Fri Apr 10, 2009 2:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delays between Job Sequences / Calling Next Job
Replies: 20
Views: 10091

Interesting... which 8.x version are you running? Specifically, is this 8.1 where the job logs are in the XMETA repository or are they still hashed files in the project? Known issue, if the former, and there's a way to force them back to the "Universe" layer.
by chulett
Fri Apr 10, 2009 11:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert String to Decimal in subroutine
Replies: 8
Views: 2311

Ah... duh, should have caught that. That or reference only the first element of the Output dynamic array in your expression.
by chulett
Fri Apr 10, 2009 11:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Conversion
Replies: 5
Views: 1477

Sorry, yes meant time on a 24-hour clock not strictly "zulu" or GMT time.
by chulett
Fri Apr 10, 2009 11:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencer Expression bug
Replies: 2
Views: 1053

UserStatus <> Job Status and that's just text, not anything meaningful. You need a custom trigger to check for:

Code: Select all

JobActivityStage.$JobStatus = DSJS.RUNOK Or JobActivityStage.$JobStatus = DSJS.RUNWARN
Replace "JobActivityStage" with the actual name of the stage in your Sequence job.
by chulett
Fri Apr 10, 2009 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Conversion
Replies: 5
Views: 1477

Yup, and you typically need to standardize the dates so month/day are forced to two digits and also handle the conversion of AM/PM to military time. Typically.
by chulett
Fri Apr 10, 2009 7:33 am
Forum: General
Topic: Modify Stage in parallel jobs
Replies: 4
Views: 1703

Why not just read the chapter on the Modify Stage in the Parallel Job Developer's Guide pdf? Got examples and everything.
by chulett
Fri Apr 10, 2009 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert String to Decimal in subroutine
Replies: 8
Views: 2311

Server BASIC routines are not "strongly typed" so not typically an issue as everything is handled as a string under the covers. Post your routine code so we can see what all is going on in there, especially around Line 15. I'm also curious what you're going to do with this computed value? ...
by chulett
Fri Apr 10, 2009 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merge stage
Replies: 2
Views: 2903

A simple search for "Master record" turned up a number of relevant conversations, for example:

viewtopic.php?t=99961
by chulett
Fri Apr 10, 2009 7:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: setting a peek stage in a developed job
Replies: 5
Views: 1927

Perhaps it's obvious to everyone else, but I'm curious what "disturbing the link properties" means here. :?
by chulett
Fri Apr 10, 2009 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: calling scripts using Execsh
Replies: 8
Views: 2364

Pass in yesterday's date as a job parameter. Use it in both the ExecSH call and the Sequential File stage.