Search found 53125 matches

by ray.wurlod
Mon Aug 08, 2005 12:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No key FILES
Replies: 10
Views: 1544

Did you TRY a Merge stage, or simply doubt my advice?
by ray.wurlod
Mon Aug 08, 2005 12:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error due in filter stage
Replies: 7
Views: 1658

In that case I'm puzzled. Does the error message occur consistently and reliably? If so, can you post the job design? Otherwise report it to your support provider, complete with reproducible test case.
by ray.wurlod
Mon Aug 08, 2005 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: diff between Data set, sequential file stage & file stag
Replies: 2
Views: 1083

Welcome aboard! :D Reading the appropriate chapters describing each stage type in the Parallel Job Developer's Guide (parjdev.pdf) will aid your understanding. A quick, and necessarily incomplete, summary is: A Sequential File stage accesses regular operating system files, such as CSV files, text fi...
by ray.wurlod
Mon Aug 08, 2005 12:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issuuing abort after 50 logs
Replies: 18
Views: 5893

If running a job from Director you can set the number of warnings before an abort on the Limits tab of the Job Run Options dialog.
by ray.wurlod
Mon Aug 08, 2005 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null detection after joiner
Replies: 10
Views: 5364

Three of the conditions are straightforward.
    IsNull(A) And IsNotNull(B)

    IsNotNull(A) And IsNull(B)

    IsNotNull(A) And IsNotNull(B) And ...

where ... is any other comparison needed to detect a change.
Outer joins return NULL for columns from rows (links) where there was no match.
by ray.wurlod
Mon Aug 08, 2005 12:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DFloatToDecimal
Replies: 4
Views: 2885

You can rely on implicit casts in a BASIC Transformer stage.
by ray.wurlod
Mon Aug 08, 2005 12:13 am
Forum: IBM QualityStage
Topic: CASS Job killed when session logs out
Replies: 3
Views: 2234

Use nohup - this is the UNIX method for starting a background process that does not "hang up" (= log out) when its parent logs out. You still need the final ampersand to start the process as a background process.

Code: Select all

nohup command &
by ray.wurlod
Sun Aug 07, 2005 1:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Metadata of DS_JOBOBJECTS
Replies: 2
Views: 1397

These have not been published, and do not exist anywhere. You can deduce some them from the header files in dsinclude. DS_JOBOBJECTS is not a conventional table. It has many different record structures, ranging from nine to 308 columns, depending on the particular object type. Further, some of those...
by ray.wurlod
Sun Aug 07, 2005 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding Max of date
Replies: 11
Views: 4056

Things that are "promotable", for example int8 to int16 or int32, can convert implicitly in parallel jobs. Otherwise the conversion must be performed explicitly. There is a table explaining this in the Parallel Job Developer's Guide, from memory in the chapter on the Modify stage.
by ray.wurlod
Sat Aug 06, 2005 7:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No key FILES
Replies: 10
Views: 1544

Use a server job Merge stage which allows any kind of join between two sequential files, including full outer join.
by ray.wurlod
Sat Aug 06, 2005 7:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: impoting dsx throwing error
Replies: 8
Views: 2237

The really interesting question here is how Chuck in Virginia USA knew that Rajasekhar in Bangalore (India) had checked the Omit check box :!:
by ray.wurlod
Sat Aug 06, 2005 7:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substracting Days from a Date
Replies: 5
Views: 1936

Welcome aboard! :D

This topic has been discussed before (though from memory it was "add business days to a timestamp"). Search this forum and I'm sure you'll find some examples that you can adapt.
by ray.wurlod
Sat Aug 06, 2005 7:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substracting Days from a Date
Replies: 5
Views: 1936

Welcome aboard! :D

This topic has been discussed before (though from memory it was "add business days to a timestamp").
by ray.wurlod
Sat Aug 06, 2005 7:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null detection after joiner
Replies: 10
Views: 5364

Please provide more information about "unexpectedly". What did you expect, and why? What does the help/manual say about the null handling functions? Are you expecting something else? What actually happens? how do you prove what actually happens? And remember that "" is not the same as NULL. One know...
by ray.wurlod
Sat Aug 06, 2005 7:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invocation ID?
Replies: 3
Views: 1160

You do it the same way, but you do NOT want to run multiple instances of parallel jobs. Ever.

Multiple instance is simply a way to achieve partition parallelism in server jobs, which happens automatically in parallel jobs.