Search found 42189 matches

by chulett
Tue Jun 10, 2008 4:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Switching between sequence and job
Replies: 22
Views: 5135

Off the top of my head, a routine to read those values in and a Nested Condition stage to split the flow from there to the right Job Activity. Perhaps all in a looping structure supported by a UserVariables Activity stage.
by chulett
Tue Jun 10, 2008 2:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Switching between sequence and job
Replies: 22
Views: 5135

Search the forums for USERSTATUS, it's all out there including some code that may come in handy.
by chulett
Tue Jun 10, 2008 2:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Switching between sequence and job
Replies: 22
Views: 5135

You need some way for the job to stash / land that data in such a way that the Sequence job can pick up and pass along. For a Server job I'd suggest USERSTATUS, however either job type can write data to a flat file and a Sequence routine can pick them up and pass them as job parameters to downstream...
by chulett
Tue Jun 10, 2008 1:40 pm
Forum: General
Topic: Will DBlink make it faster?
Replies: 6
Views: 4169

No, a dblink is - in this particular case - a specific Oracle object, allowing a query to reference a 'remote' table as if it was local to the current instance. I would think other databases have a similar concept.
by chulett
Tue Jun 10, 2008 1:36 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: RTI Performance issues, Part 1
Replies: 6
Views: 3231

Thanks for the info, I'll check. Probably have the Apache tool here somewhere, not sure about the Oracle one. And I'll bump up the Wait Delay as well. This is good timing as I just found out it's time for another 'load test' in the QA environment tonight. Any idea what a reasonable value to raise th...
by chulett
Tue Jun 10, 2008 9:30 am
Forum: General
Topic: ACCES DENIED
Replies: 2
Views: 1699

Search the forums. The cause and solution have been discussed here before.
by chulett
Tue Jun 10, 2008 9:30 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: RTI Performance issues, Part 1
Replies: 6
Views: 3231

RTI Performance issues, Part 1

Looking for some Words of Wisdom as I am getting beaten up black and blue over 'RTI performance' or lack thereof. I said "Part 1" as I thought I'd start with the simplest case and, if time allows, follow up with the more complex ones. Please see this post which explains our topology. I have four ser...
by chulett
Tue Jun 10, 2008 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal Conversion
Replies: 5
Views: 1576

Excellent, please mark the topic as Resolved in that case.
by chulett
Tue Jun 10, 2008 7:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing extra records
Replies: 6
Views: 1650

I did a mixture of both of your suggestions. I used EOR (End of Record, I presume) characters in which I was able to retrieve a couple of the commands to perform that from a previous post titled, "writing multiple lines from 1 source row", from roy. p.s.- I looked for the FAQ mentioned by Chulett o...
by chulett
Tue Jun 10, 2008 6:55 am
Forum: IBM QualityStage
Topic: Datastage
Replies: 1
Views: 1080

First suggestion would be to re-post your problem over in the Parallel Extender forum. This one is for QualityStage questions. Before that, I'd suggest availing yourself of the Search functionality to see if your topic has been discussed before. (hint: it has)
by chulett
Tue Jun 10, 2008 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal Conversion
Replies: 5
Views: 1576

There are probably other ways, but I'd bring it in as a string, remove all the 'punctionation' and then divide by 100:

Code: Select all

Convert(",.","",LinkName.FieldName) / 100
by chulett
Mon Jun 09, 2008 8:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01036: illegal variable name/number
Replies: 5
Views: 2006

Then you need to search more better. It has been discussed here quite a number of times. First clue is that all that running a query in a tool like SQL Developer or Toad just tells you is that it is syntactically correct. It doesn't provide any clue how appropriate it may (or may not) be for use in ...
by chulett
Mon Jun 09, 2008 5:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get job status after using UtilityRunJob
Replies: 1
Views: 1431

Never tried this, but the docs say you need to use UtilityGetRunJobInfo afterwards to find out what happened. One of the possible actions is JobCompletionStatus, which sounds like the one you need.
by chulett
Mon Jun 09, 2008 1:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Env Variables
Replies: 3
Views: 1266

by chulett
Mon Jun 09, 2008 12:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute Command Activity
Replies: 4
Views: 1579

Or via a routine using the Routine Activity stage.