Search found 53125 matches

by ray.wurlod
Tue Dec 13, 2005 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: different connection file(.odbc.ini, etc) for each project
Replies: 5
Views: 1969

The .odbc.ini file can be selected via the $ODBCINI environment variable. You already have a separate uvodbc.config file in each project by default.
by ray.wurlod
Tue Dec 13, 2005 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DATASTAGE XML
Replies: 3
Views: 1291

There is no equivalent to the server job Folder stage in parallel jobs.
by ray.wurlod
Tue Dec 13, 2005 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: nls error
Replies: 1
Views: 826

Set NLS_LANG to the same code page.
by ray.wurlod
Tue Dec 13, 2005 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MKS Toolkit
Replies: 5
Views: 1408

... and you can even map those. For example, if your current drive is C: then MKS will recognize C:\tmp as /tmp and will recognize C:\ as /.
by ray.wurlod
Tue Dec 13, 2005 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data with all special characters - no delimiter
Replies: 2
Views: 950

Any reason not to use fixed width format?
by ray.wurlod
Tue Dec 13, 2005 3:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running Px on a single processor system
Replies: 4
Views: 1318

Beware, though, that you will flood this system sooner than one with multiple CPUs.
by ray.wurlod
Tue Dec 13, 2005 3:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple checkpoints in Job sequencers
Replies: 2
Views: 1855

Not if you have "do not checkpoint run" set for A1. You're asking to have your cake and eat it too.
by ray.wurlod
Tue Dec 13, 2005 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Parallel Routine
Replies: 4
Views: 1550

This is kind of a thread hijack. DataStage clients are written using .NET Framework 1.1 - they simply won't work (version 7 and later) unless the Framework is installed.
by ray.wurlod
Tue Dec 13, 2005 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Combinability mode
Replies: 4
Views: 4300

Disabling combinations is mainly used when troubleshooting. Of course, Arnd never writes jobs that need troubleshooting!
by ray.wurlod
Tue Dec 13, 2005 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Information carried by a link
Replies: 4
Views: 943

Under the covers the design information is stored as jobs, containers, stages and "pins". A "pin" is a connection between a link and a stage. Every link in a complete job is represented by two pin records. The analogy is from electronic circuit boards, where the links are drawn on the board and comp...
by ray.wurlod
Tue Dec 13, 2005 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation error in using environment variable in Job
Replies: 10
Views: 3655

Are you putting "#" characters around job parameter references in passive stages? For example #$RBUSER#
by ray.wurlod
Tue Dec 13, 2005 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to setup DataStage for MPP system
Replies: 14
Views: 11242

Have you checked the hosts files on all systems? How exactly is name to IP address resolution performed?
by ray.wurlod
Mon Dec 12, 2005 10:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine for Before/After Job Processing
Replies: 3
Views: 1002

You don't know what you've missed!!
by ray.wurlod
Mon Dec 12, 2005 10:55 pm
Forum: Site/Forum
Topic: New Forum
Replies: 11
Views: 5894

There is the intention. The logistics need to be sorted out, particularly for presentation outside the USA. Watch for an announcement, or contact the Editor directly.
by ray.wurlod
Mon Dec 12, 2005 4:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can i use EndIf in derivation of transformer????
Replies: 4
Views: 1031

No. The If..Then..Else in an expression is a conditional expression , not a conditional statement. A conditional expression generates one of two values, depending on the result of a test expression. Therefore you must have both a Then clause and an Else clause in an conditional expression. Further, ...