Search found 53125 matches

by ray.wurlod
Tue Jun 06, 2006 6:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DsStopFunction in the after job routine.
Replies: 2
Views: 760

This is a before/after subroutine. It is executed either before any rows have been processed (in which case the link row count must be zero), or after all rows have been processed. Its position within the processing stream ensures that it will not stop the job. I'm not sure why you want to stop the ...
by ray.wurlod
Tue Jun 06, 2006 6:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting count of records passed through a link
Replies: 17
Views: 7392

No, but you can use it in a Routine activity in the job sequence that runs the parallel job.

You can also look in the job log - every "active stage finishing" message carries row counts for links connected to that stage.
by ray.wurlod
Tue Jun 06, 2006 6:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to view the records
Replies: 11
Views: 1843

Are you getting this message at row 0 or 1, or at a later row? If the former, check that the first line is not column names. If the later, check that row, ensuring that none of the columns contains a line termination character (Char(10)).
by ray.wurlod
Tue Jun 06, 2006 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Client Installation on XP SP2 pack issue
Replies: 5
Views: 1480

It is not in the installation folder. It must be downloaded from the eServices web site. If you search the forum you will find a link to the actual page.
by ray.wurlod
Tue Jun 06, 2006 6:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get the metadata details
Replies: 6
Views: 1315

What is your DEFFUN declaration for DSGetLinkMetaData? This is not catalogued with a "DSU." prefix.
by ray.wurlod
Tue Jun 06, 2006 6:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator stranges
Replies: 4
Views: 983

I have also seen something like this behaviour. It also occurs in the job monitor, so is probably a problem with how the link row count is being collected when there is a direct link from a Transformer to an Aggregator stage. As noted, the final row counts are correct. It might be an artifact of row...
by ray.wurlod
Tue Jun 06, 2006 12:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get the metadata details
Replies: 6
Views: 1315

Why did you bother with a Routine when a stage variable would have done just as well, and would not have introduced COMMON (which has future implications if you ever want to incorporate this server job functionality into a parallel job)? Regarding DSGetLinkMetaData, do you have the correct arguments...
by ray.wurlod
Tue Jun 06, 2006 12:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Control M log file from Datastage.
Replies: 3
Views: 2199

If you can describe the format of the Control-M log file in metadata terms, you can process it with DataStage. If it has a variable record format you still may be able to do so. You will also need to be able to specify its location to the DataStage job.
by ray.wurlod
Tue Jun 06, 2006 12:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to create XML document
Replies: 7
Views: 2087

Normally it installs into C:\Program Files\Ascential\DataStage\Docs (or the Docs folder wherever you installed your DataStage client). If you ordered XML PACK separately, then it will be on the media on which that software was delivered.
by ray.wurlod
Mon Jun 05, 2006 10:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: duplicates
Replies: 2
Views: 789

Indentation/formatting is achieved by wrapping the relevant text between Code tags. Select the text, then click on the "Code" button above. Set up four stage variables. The first three compare the three fields. They can take advantage of the fact that a NULL causes a Boolean operation to return FALS...
by ray.wurlod
Mon Jun 05, 2006 5:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Appending values from two columns into one
Replies: 10
Views: 2423

Your source extraction could be user-defined SQL. SELECT A FROM tablename UNION ALL SELECT B FROM tablename; Naturally this requires that columns A and B have compatible data types but, then, so does inserting them into the one column in your target. If they are incompatible, use CAST to guarantee t...
by ray.wurlod
Mon Jun 05, 2006 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination in Transformer stage.
Replies: 13
Views: 3806

Perhaps one of the hashed files is hitting its 2GB limit. Have you checked their sizes? You may need to create hashed files with 64-bit internal addressing. Unfortunately you can not do this with the GUI. However, you can do it with a CREATE.FILE or a mkdbfile command - depending on where you want t...
by ray.wurlod
Mon Jun 05, 2006 4:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination in Transformer stage.
Replies: 13
Views: 3806

Reset the job in Director and report whether any diagnostic information "from previous run..." is logged. Change the target to a Sequential File stage. This will isolate the problem to being in the Transformer stage or your original target stage. Once you've eliminated the Transformer stage as the c...
by ray.wurlod
Mon Jun 05, 2006 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 80004005 error now occuring. Looking for ideas...
Replies: 15
Views: 3658

Has "someone" changed the password for the database and not updated the job sequence parameter value?
by ray.wurlod
Mon Jun 05, 2006 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequence error
Replies: 5
Views: 1075

What IS the derivation of column xxxx ?

Does it refer to a now non-existent input column? For example, did you delete one column, or change the name of a link?