Search found 53125 matches

by ray.wurlod
Thu Mar 09, 2006 12:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Locked with associated PID = 0
Replies: 10
Views: 3836

You can, but start a different thread to do it in.
by ray.wurlod
Thu Mar 09, 2006 12:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join,merge, lookup
Replies: 8
Views: 2513

There are various other criteria. The decision should really depend on what functionality you need - the memory savings of the Join and Merge stages are countered by the need to sort upstream (which eats most of the saved memory!). Lookup stage gives you conditional lookup. It allows condition failu...
by ray.wurlod
Thu Mar 09, 2006 12:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to DB2 using DB2 Enterprise Stage
Replies: 5
Views: 1622

That's one of those wonderful "it depends" questions. Get the document and see which technique is most appropriate.
by ray.wurlod
Thu Mar 09, 2006 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage variables
Replies: 7
Views: 1852

Load the value in the job's user status area and retrieve it from there in the other Transformer stage. But there's only one user status area. You can also use system variables @USER0 through @USER4 and @USER.RETURN.CODE to get five more. If you need more than six, you will need to pack them up into...
by ray.wurlod
Thu Mar 09, 2006 11:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP File in sequencer
Replies: 7
Views: 1708

Please edit and put a [ c o d e ] tag at the beginning of your code and a [ / c o d e ] tag at the end of your code (minus the spaces, of course).
by ray.wurlod
Thu Mar 09, 2006 11:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wait for directory to have file(s)
Replies: 14
Views: 4142

If the file is placed on your server by an external scheduler, such as Ctrl-M or SeeBeyond, why not configure the same scheduler to start the DataStage job that has to process the file?
by ray.wurlod
Thu Mar 09, 2006 11:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing parameters to Hashed file
Replies: 12
Views: 2792

A job is already attached to itself. Use DSJ.ME as the job handle in the DSGet... functions. Do NOT use DSAttachJob(), DSPrepareJob() or DSDetachJob(). Use a CONTINUE statement to bypass the remainder of the loop if the job name is the name of the current job. The following code fragment assumes DS_...
by ray.wurlod
Thu Mar 09, 2006 11:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Link Variables (SQLSTATE) in Parallel Jobs
Replies: 5
Views: 1560

I don't have access to one at the moment. Since it's not an Enterprise stage you may have some success. When you feed this stage from a Transformer, are there any link variables accessible via the expression editor?
by ray.wurlod
Thu Mar 09, 2006 11:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: server and parallel migration
Replies: 8
Views: 2095

Server jobs will be around for the foreseeable future. This was reinforced in (unofficial) discussions with IBM technical person this week. The first question you must ask is whether there's any value in migrating, given that fact. If your server job performs well, and meets your time window, it's n...
by ray.wurlod
Thu Mar 09, 2006 11:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: View data on seq not working
Replies: 10
Views: 3477

/dev/null is a black hole. Anything sent to /dev/null has gone forever. You are very lucky your session didn't also disappear into the black hole (= hang forever) if you tried View Data on /dev/null. Because the data have gone, you would only ever expect to be able to see those that remain; that is,...
by ray.wurlod
Thu Mar 09, 2006 11:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Calculation to get the next quarter based on Input Date
Replies: 17
Views: 3841

For small volume of data, a BASIC Transformer stage could serve here. Use Oconv(Iconv(TheDate, "D"), "DQ") to generate the quarter number (1, 2, 3 or 4). Then take the remainder after dividing the quarter number into the month number, added to the month number. Us...
by ray.wurlod
Thu Mar 09, 2006 11:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Link Variables (SQLSTATE) in Parallel Jobs
Replies: 5
Views: 1560

You're just out of luck. :cry: A completely different mechanism is used in the Enterprise stages.
by ray.wurlod
Thu Mar 09, 2006 11:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to DB2 using DB2 Enterprise Stage
Replies: 5
Views: 1622

There is a 22 page document available from IBM support that describes setting up for remote DB2 access. That there's 22 pages ought to suggest that the process is non-trivial. You will also need to talk to your sales rep about getting an additional copy of DataStage to run on the DB2 machine - this ...
by ray.wurlod
Thu Mar 09, 2006 11:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning when I use lookup fileset
Replies: 2
Views: 1094

This is a warning that can safely be demoted to informational. It's telling you that the key column passed to the Lookup File Set is exactly the same as the key column returned from the Lookup File Set, so one of them has been consumed so that only one of the (identical) values is moved onto the out...
by ray.wurlod
Thu Mar 09, 2006 6:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage variables
Replies: 7
Views: 1852

If the second Transformer stage is downstream of the first, all you need to do is to add the stage variable as an extra output column on the output link from the first Transformer stage.