Search found 53125 matches

by ray.wurlod
Thu Jun 02, 2005 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS7.5 Enterprise Edition - SQL Server 2000 plug-in
Replies: 7
Views: 1567

Not at the moment. I'm working on a non-PX site. If it's there, by all means plug it in and use it.
by ray.wurlod
Thu Jun 02, 2005 5:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I trap the status from dsjob?
Replies: 6
Views: 1469

This is actually what Craig said, if you re-read his post carefully. :wink:
by ray.wurlod
Thu Jun 02, 2005 5:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CompareStage
Replies: 9
Views: 2598

:!: Be very careful if using runtime column propagation. Propagated columns can not be traced using MetaStage, since there is no linkage between them and the table definition in the DataStage repository.
by ray.wurlod
Thu Jun 02, 2005 5:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash/Seq file value to set as parameter
Replies: 6
Views: 1562

I posted such a routine earlier today. Search for ReadV
by ray.wurlod
Thu Jun 02, 2005 5:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to write a routine
Replies: 3
Views: 872

I have grave doubts that a Routine is what you want. From your - albeit incomplete - specification, I'd suggest an approach that sorts the input file then performs change detection via stage variables is more appropriate.
by ray.wurlod
Thu Jun 02, 2005 5:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Use DS.Tool in windows
Replies: 3
Views: 919

That's pretty horrible, since the Administrator client Command window does not have terminal formatting capability, and DS.TOOLS is a menu. Better is to establish a telnet connection to the DataStage server machine, connecting to the project in question. (On Windows, telnet is a DataStage service.) ...
by ray.wurlod
Thu Jun 02, 2005 5:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I trap the status from dsjob?
Replies: 6
Views: 1469

The -jobstatus option is used as a suboption with the -run main option. The actual option you require is -jobinfo.
by ray.wurlod
Thu Jun 02, 2005 5:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine for writing Log to Sequential file
Replies: 2
Views: 912

EventMessage is wrong. The message begins in field number 4, and may include backslashes. You want something like Field(Str, "\", 4, 999) Str was a poor choice of variable name, since it is also the name of an intrinsic function. Your code is horribly cumbersome. You process the lo...
by ray.wurlod
Thu Jun 02, 2005 5:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Linking References Inputs
Replies: 3
Views: 692

If you want to do it in one Transformer stage you will find that the stage editor does not let you drag any column from the earlier reference input link to the second. Nor to build a reference key expression containing a column from that link. Nonetheless it is legal, but you must type the fully qua...
by ray.wurlod
Thu Jun 02, 2005 5:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting binary data
Replies: 2
Views: 730

DataStage doesn't define data types at all. DataStage server jobs don't even use data types! When you imported the table definition, it was the database server that asserted "Binary". You will need to research exactly what this means. Only then can you reasonably expect to be able to convert the dat...
by ray.wurlod
Thu Jun 02, 2005 5:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generate Random Number
Replies: 9
Views: 5330

A re-hired employee using a previously allocated number would be an UPDATE instead of an INSERT. Use the sequence to generate keys only for INSERT. Otherwise, if you need to preserve history, then your table needs a new design, featuring a completely artificial key that contains no information whats...
by ray.wurlod
Thu Jun 02, 2005 4:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparision of String
Replies: 4
Views: 1149

You may like to convert both the search string and the main string to upper case, in order to perform a case-insensitive search.
by ray.wurlod
Thu Jun 02, 2005 4:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal errors in running the job
Replies: 2
Views: 2061

Persistent data set control files conventionally have a ".ds" suffix. :idea:
by ray.wurlod
Thu Jun 02, 2005 4:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job is locked while creating the copy
Replies: 3
Views: 958

It does something completely unnecessary to recover from a locked job; it sets a "read only" flag to 'NRO' when it was already 'NRO'! The long and short of your original problem is that you tried to take a copy of a job that was already open - whether in Designer, Manager or Director (Monitor) - or ...
by ray.wurlod
Wed Jun 01, 2005 8:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JOB PARAMETER
Replies: 4
Views: 1473

Post a new thread. We don't hijack threads - it renders the search mechanism inefficient. Yours is an almost completely different requirement.