Search found 53125 matches

by ray.wurlod
Thu Jan 08, 2009 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence - Possibility of Shell Script
Replies: 20
Views: 7510

ds_search2008 wrote:
$Path String $PROJDEF
catFname String cat LKP_ACTCODE(Default value)
Cust_Id Integer
You can't use "cat LKP_ACTCODE" as a file name in a pathname. This is also the cause of the "LKP_ACTCODE not found" error.
by ray.wurlod
Thu Jan 08, 2009 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Updatable Looukps
Replies: 7
Views: 1780

No, because the update of Record1 happens in the same Transformer stage in which the failed lookup of Record1 occurs. That is, it happens before the Transformer stage begins processing Record2.
by ray.wurlod
Thu Jan 08, 2009 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cant get my sequential file schema right
Replies: 3
Views: 1032

I'm not sure where the cutoff points (for the size of the prefix number) are, but they represent the smallest unsigned integer needed to describe the length of the string. For sufficiently short strings (I would have thought 32 or fewer characters) that fit in a single word in memory no prefix is re...
by ray.wurlod
Thu Jan 08, 2009 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Finding Routines used within a job
Replies: 9
Views: 2858

For the first you would need to effect a number of queries against DS_JOBOBJECTS - the ROOT record for before/after subroutines, each active stage record for active stages in server jobs, each Transformer stage record for transform functions in server jobs (and others for parallel jobs). A query on ...
by ray.wurlod
Thu Jan 08, 2009 4:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: message handlers
Replies: 3
Views: 1505

Alas, no, for named message handlers. You need to manage these "manually". Local message handlers are, however, exported.
by ray.wurlod
Thu Jan 08, 2009 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cant get my sequential file schema right
Replies: 3
Views: 1032

Open the table definition for the sequential file. You should see the prefix mentioned as part of the record schema. You can save this to a file then remove the "prefix" part, and re-import.
by ray.wurlod
Thu Jan 08, 2009 4:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reporting Assistant...
Replies: 5
Views: 1388

Please use a more professional standard of written English. What you claim is not true; there are functions in the DataStage API for obtaining information from a job log, so that the whole process could be implemented in a Routine. You can also manage the whole process in a shell script using dsjob...
by ray.wurlod
Thu Jan 08, 2009 4:43 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Creating sequence generator transformation
Replies: 5
Views: 11395

Welcome aboard. Are you sure you mean TX ?
by ray.wurlod
Thu Jan 08, 2009 2:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: join in server job
Replies: 4
Views: 1238

To dwh.com; please be much more careful with your written English - spelling, grammar and punctuation.
by ray.wurlod
Thu Jan 08, 2009 2:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reporting Assistant...
Replies: 5
Views: 1388

You can get the job names from the job sequence's log, and the category of each from DS_JOBS table.
by ray.wurlod
Thu Jan 08, 2009 2:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: join in server job
Replies: 4
Views: 1238

It's not mandatory (to use hashed files), but it's much faster, particularly if the database is not on the same machine as the DataStage server.
by ray.wurlod
Thu Jan 08, 2009 2:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decoding value in transformer
Replies: 2
Views: 1276

Did you Search? How to use stage variables to "remember" values from the previous row has been discussed a bajillion times, I am sure that at least some of those deal with running counts.
by ray.wurlod
Thu Jan 08, 2009 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reporting Assistant...
Replies: 5
Views: 1388

Reporting Assistant was deprecated at version 5.2, and does not handle job sequences.
by ray.wurlod
Thu Jan 08, 2009 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_PM_CONDUCTOR_TIMEOUT
Replies: 2
Views: 1127

Welcome aboard. Not all environment variables exist by default in Administrator - though this does not preclude your putting any there that you need. DataStage environment variables are described in the manuals for parallel jobs - that is Parallel Job Developer's Guide and Parallel Job Advanced Deve...
by ray.wurlod
Thu Jan 08, 2009 1:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CSV files- Read Problem
Replies: 1
Views: 1608

Get "them" to supply you with a valid CSV file would be favourite. Commas within data require that character strings be quoted. Otherwise you're going to have to specify something else as field delimiter - something not in the data at all - and effect your own parsing in a Transformer stage.