Search found 53125 matches

by ray.wurlod
Mon Jan 23, 2006 4:09 am
Forum: Data Quality Best Practices
Topic: Transfering sources to a single file
Replies: 9
Views: 13992

Document all the possibilities, and the columns that need to be transferred in each case. The result should be a comprehensive target-from-source mapping document. The process of creating this document will clear your mind as to how to implement the ETL. I wasn't clear whether you have eleven source...
by ray.wurlod
Mon Jan 23, 2006 4:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no of process ids
Replies: 28
Views: 7584

Only sometimes. If your design has two active stages directly linked (for instance two Transformer stages) they will be executed in one process. However, if you have inter-process row buffering enabled it will enforce execution of the adjacent active stages in separate processes. What you have calle...
by ray.wurlod
Mon Jan 23, 2006 3:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Random Link collector Error
Replies: 15
Views: 7729

Perhaps your /tmp file system has become full during the job run?
by ray.wurlod
Mon Jan 23, 2006 3:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Learning routines
Replies: 3
Views: 1037

There is a module on routines in DataStage Essentials training class from IBM. Enrol soon. There also exists a class called Programming with DataStage BASIC but this is not regularly scheduled. Some vendors also offer custom training that includes a one-day introduction to writing DataStage server r...
by ray.wurlod
Mon Jan 23, 2006 3:47 am
Forum: Data Quality Best Practices
Topic: Transfering sources to a single file
Replies: 9
Views: 13992

No it won't. In a Transformer stage you can direct whatever columns you like to whatever output links you like.
by ray.wurlod
Mon Jan 23, 2006 3:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: maximum size of Sequential file that datastage can handle
Replies: 1
Views: 1543

Exactly the same size as the maximum file size that the operating system (possibly limited by the user's ulimit setting) can handle.
by ray.wurlod
Mon Jan 23, 2006 3:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Flat File not opening in DataStage
Replies: 6
Views: 1357

Your metadata describe a row that is longer than the first row in the file.

Only you can fix this. Either fix the metadata or fix the file.
by ray.wurlod
Sun Jan 22, 2006 11:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no of process ids
Replies: 28
Views: 7584

DS.PLADMIN.CMD LIST PIDS Prepare_TCL_CLAIM_WCPAOP Cannot find any process numbers for stages in job Prepare_TCL_CLAIM_WCPAOP That was exactly the response I expected to get, since the job was not running at the time. That is, I did not get the same problem with the command that you did. I take it t...
by ray.wurlod
Sun Jan 22, 2006 11:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequencer
Replies: 3
Views: 1496

Tell us what the log says about the first run and about the second run.
What is the status (exactly as reported) of the job sequence (not "sequencer") after the first abort?

Did you re-compile the job sequence after checking the "enable checkpoint" box - after all, it's a compiler option.
by ray.wurlod
Sun Jan 22, 2006 11:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: going to paticular line in the compilation error code
Replies: 3
Views: 1899

Looks like you have two instances of string constants with line terminators in them. Were you, for example, constructing beautifully formatted expressions? Not permitted - an expression must be all one line.
by ray.wurlod
Sun Jan 22, 2006 11:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Flat File not opening in DataStage
Replies: 6
Views: 1357

Is this a DataStage TX question or a server job question? That is, are you using a TX map or a Sequential File stage for reading the file?

Can you try the same task in a different (newly created) job?
Make sure that the table definition is precisely correct.
by ray.wurlod
Sun Jan 22, 2006 7:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: something overwriting $ORACLE_HOME in $SHLIB_PATH
Replies: 7
Views: 2081

If it's dsdlockd it runs as dsdlockd.

It would be inappropriate of us to advise by guesswork.

If you can tell us exactly the identity of the daemon then we could advise appropriately.

Why not look through the startup script (which is also the shutdown script) to see how it is done there?
by ray.wurlod
Sun Jan 22, 2006 1:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: functions for converting date and number
Replies: 6
Views: 1304

You may need to be alert for the order of elements in the incoming date to be able to specify Iconv() correctly. If you are sourcing the date string using an ODBC stage you can add the Date data element so that the input conversion is done for you.
by ray.wurlod
Sun Jan 22, 2006 1:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no of process ids
Replies: 28
Views: 7584

It's probably the syntax. Where did you get it from? Try a dot rather than a space between LIST and PIDS

Code: Select all

DS.PLADMIN.CMD LIST.PIDS TEST
by ray.wurlod
Sun Jan 22, 2006 1:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how execute script from my basic routine
Replies: 7
Views: 1364

Surely, then, keeping it even more simple would be to use ExecSH as a before/after subroutine or to invoke the command from an Execute Command activity?