Search found 42189 matches

by chulett
Thu Dec 18, 2008 11:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate ramndom and unique values
Replies: 6
Views: 1668

Millions? If you are doing this as some sort of surrogate key creation process, then 'random unique' numbers are definitely not the way to go. :?
by chulett
Thu Dec 18, 2008 11:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning while running the job
Replies: 4
Views: 1955

That 'message handler' advice is only valid for the Enterprise Edition, something I mentioned because you posted in the EE forum.
by chulett
Thu Dec 18, 2008 5:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to convert EBCDIC (binary data PIC S9(4) COMP) to ASCII
Replies: 17
Views: 8128

Packed data (any of the COMP family) isn't EBCDIC nor ASCII - it's packed. And 'converting' it in any fashion will corrupt it. You just need to 'unpack' it.

Define the input field as an appropriately sized string and then use DataTypePicComp (since it is signed) to unpack it to an integer.
by chulett
Thu Dec 18, 2008 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to minus one day from a give timestamp data
Replies: 9
Views: 3398

Whoops, that was what I meant but not what came out of my fingers. :oops:

Damn fingers.
by chulett
Thu Dec 18, 2008 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: -db_cs option is deprecated
Replies: 7
Views: 1964

Ask whomever wrote that there was a patch for the patch number. Post the question in their thread or explain the issue to your support provider and let them figure out what patch is applicable.
by chulett
Thu Dec 18, 2008 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: -db_cs option is deprecated
Replies: 7
Views: 1964

:? Wait... so is the job actually starting and processing some rows before it ends with that message? I thought it was failing to start but a closer reading of the message implies it was running and then 'finished' with that status.

If so, then I'm barking up the wrong tree.
by chulett
Thu Dec 18, 2008 1:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Functions and routines read only?
Replies: 7
Views: 1584

Bummer. That's kind of... stoopie.
by chulett
Thu Dec 18, 2008 12:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Install Datastage 7.5 and 4.2 clients on windows xp
Replies: 3
Views: 1742

From what I recall, the original version was called "client switcher" and required a batch file but it hasn't worked like that for some time now. AFAIK.
by chulett
Thu Dec 18, 2008 11:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: create epty files
Replies: 4
Views: 1188

Time to mark the post as Resolved then, use the big button at the top of the screen.
by chulett
Thu Dec 18, 2008 11:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Install Datastage 7.5 and 4.2 clients on windows xp
Replies: 3
Views: 1742

Yes, as long as you install them to two different locations and also install the Multi-Client Manager as only one can be active at any given time.
by chulett
Thu Dec 18, 2008 11:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: -db_cs option is deprecated
Replies: 7
Views: 1964

No. That "99" says it is not in the right state, i.e. the job has to be compiled and "not running". Double-check your logs, I'm still betting something is calling it while it is already running.
by chulett
Thu Dec 18, 2008 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Functions and routines read only?
Replies: 7
Views: 1584

Read only != cannot see code. I don't have access to 8.x so are you saying the code cannot be modified or you literally cannot see the underlying code?
by chulett
Thu Dec 18, 2008 11:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: -db_cs option is deprecated
Replies: 7
Views: 1964

I wouldn't worry about the 'deprecated' message, sounds like your problem is the job is not a multi-instance job and you are trying to start it while it is already running.
by chulett
Thu Dec 18, 2008 11:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compile error using environment variable in transformer
Replies: 5
Views: 1562

Welcome! From what I understand you cannot reference an environment variable directly in a derivation. However, you can use the GetEnvironment function to pull that value into the job.
by chulett
Thu Dec 18, 2008 11:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: create epty files
Replies: 4
Views: 1188

ps. No OCI stage needed. :wink: In Server you can 'source' from a transformer. Add a dummy stage variable as this is what allows the job to compile, create the appropriate metadata on the link and then constrain the output to the number of rows you want generated by the transformer. For example, @OU...