Search found 53125 matches

by ray.wurlod
Sat Apr 12, 2008 4:51 pm
Forum: Site/Forum
Topic: How did you learn DataStage?
Replies: 34
Views: 29121

Did you get PAID ?!!
:wink:
by ray.wurlod
Fri Apr 11, 2008 11:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage error
Replies: 7
Views: 1355

Please advise HOW it was resolved, to aid future searchers.

You might also mark the thread as Resolved.
by ray.wurlod
Fri Apr 11, 2008 6:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query dataset part key(s) and sort key(s)
Replies: 6
Views: 2086

I sense an enhancement request coming soon!
by ray.wurlod
Fri Apr 11, 2008 4:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot Stage error
Replies: 3
Views: 952

Find the directory in which dscapiop is located and make sure that this directory is included in your shared library search path environment variable.
by ray.wurlod
Fri Apr 11, 2008 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query dataset part key(s) and sort key(s)
Replies: 6
Views: 2086

I believe that neither sort keys nor partition keys are stored in Data Sets. There is no need; the data are stored however they arrived (partitioned and sorted). Therefore, I believe, you need to track back to the jobs that created each Data Set and determine from its log which APT_CONFIG_FILE value...
by ray.wurlod
Fri Apr 11, 2008 4:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading to DB2 with PX
Replies: 5
Views: 1577

You are leaving APT_STRING _PADCHAR environment variable set to its default value (0x00). If you want space padding, bring this into your job as a job parameter and change its value to a single space character or, if you must, 0x20.
by ray.wurlod
Fri Apr 11, 2008 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Quote char handling
Replies: 4
Views: 941

Backslash may also work as a quote character. It does in server jobs. Try it and let us know.

Code: Select all

\"&fieldname#1"="rama's"\
by ray.wurlod
Fri Apr 11, 2008 4:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join - dealing with different input column names
Replies: 9
Views: 2072

Copy is the cheapest stage for renaming columns.
by ray.wurlod
Fri Apr 11, 2008 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Memory and CPU Usage
Replies: 4
Views: 4679

And when you get to version 8 there is a whole suite of monitoring and resource estimation tools available in the product, with which you can exhaust all the toner cartridges in your color printer!
by ray.wurlod
Fri Apr 11, 2008 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Outgoing File
Replies: 2
Views: 717

Definitely you need to use a Sort Merge collector. (Auto) will collect the rows round robin; the fact that the rows on each node (partition) have been infividually sorted by the Sort stage is ignored by (Auto) but acknowledged by Sort Merge collecting algorithm.
by ray.wurlod
Fri Apr 11, 2008 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Px stage Help
Replies: 2
Views: 895

Search for "vertical pivot" also.
by ray.wurlod
Fri Apr 11, 2008 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Function similar to Oconv in parallel jobs
Replies: 4
Views: 4009

You use appropriate data type conversion functions, such as StringToDate() and DateToString(). The format string supplied with each of these specifies how the string is formatted.
by ray.wurlod
Fri Apr 11, 2008 4:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenating Sequential Files
Replies: 3
Views: 1166

You *should* be able to use cat file1 file2 file3 as a filter command in a Sequential File stage - the stage reads stdout of the cat command.