Search found 53125 matches

by ray.wurlod
Wed Oct 03, 2007 10:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Upgrade to EE
Replies: 4
Views: 1121

Oh, and the hardware requirements are greater. Particularly memory and disk space.
by ray.wurlod
Wed Oct 03, 2007 10:32 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: Jobs Getting Failed Due to Lack of Sessions
Replies: 4
Views: 3048

Moderator: please move to parallel forum
by ray.wurlod
Wed Oct 03, 2007 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: couldn't find DB2/UDB enterprise stage
Replies: 11
Views: 2273

7.5x2 is for Windows only, and does not have the DB2 Enterprise stage.

7.5.2 is for all platforms and does have the DB2 Enterprise stage. However this version does not support compiling and running jobs on Windows platforms; only designing them.
by ray.wurlod
Wed Oct 03, 2007 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: couldn't find DB2/UDB enterprise stage
Replies: 11
Views: 2273

What (exact) version is your friend running?
by ray.wurlod
Wed Oct 03, 2007 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Default.apt Syntax Question
Replies: 10
Views: 3345

Best practice is never to use network drives for resource scratchdisk, and to avoid doing so for resource disk.

This has to do with a number of things all of which will be too greatly constrained by network bandwidth.
by ray.wurlod
Wed Oct 03, 2007 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DsJobReport - write status to a specific file
Replies: 1
Views: 764

Of course. You could use an echo command redirecting its output (via DSExecute), or you could use the WriteSeq statement (which implies OpenSeq and CloseSeq) in your subroutine.
by ray.wurlod
Wed Oct 03, 2007 2:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading SQL from file to extract data from Oracle Tables
Replies: 19
Views: 4627

Is your job parameter of type String?

Post your actual expression used when setting the job parameter. You may need to remove @FM characters from the command output.
by ray.wurlod
Wed Oct 03, 2007 2:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to set to Null
Replies: 1
Views: 665

Welcome aboard.

What is different between the environments where it works and the environment where it does not work?

("Nothing" is not the correct answer. However the correct answer may lie outside of DataStage. You need to be the detective.)
by ray.wurlod
Wed Oct 03, 2007 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while try to access data from sequential file
Replies: 2
Views: 2666

Make sure you have the correct field delimiter character and the correct quote character specified.
by ray.wurlod
Wed Oct 03, 2007 2:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can we pass char values as parameter values
Replies: 10
Views: 1474

What is the data type of BALANCE_ID ?
by ray.wurlod
Wed Oct 03, 2007 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: JOB SCHEDULE PLAN document(template) -Urgent****
Replies: 1
Views: 648

Etiquette Note
We don't do "urgent" here. IF you need urgent help, sign up for premium service with your support provider. Learn the true cost of "urgent". All posters on DSXchange are volunteers, who post as and when they can.
by ray.wurlod
Wed Oct 03, 2007 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic Stage Option Value
Replies: 4
Views: 1464

Imagine we're processing the date 2007-10-04. The year is 2007, the month is 10, and we require 2071001 as the result. The "2" is the century designator. cast(YR as INTEGER)-1900)*10000 returns (2007-1900) * 10000, or 2070000 cast(Mnth as INTEGER)*100 returns (10 * 100), or 1000 cast('01' as INTEGER...
by ray.wurlod
Wed Oct 03, 2007 1:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Batch Job - send email issue
Replies: 3
Views: 1215

Code: Select all

Call DSExecute("UNIX",'/usr/bin/mailx -s ' : JobName : ' "a@yahoo.com"','0','0') 
by ray.wurlod
Wed Oct 03, 2007 1:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The string representation of a datetime value is out of rang
Replies: 7
Views: 8120

Learn what the highest date that can legally be represented in your DB2 instance is, and check that no later date is included in your data. Be wary of the format of the date also, for example don't supply mmddyyyy if yyyy-mm-dd is expected.
by ray.wurlod
Wed Oct 03, 2007 1:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting invocation Id details from the job
Replies: 4
Views: 2067

Not from dsjob (apart from reading the log). There is a C language API (dscapi) that is effectively the same as the BASIC API (dsapi) - you can use the functions in that. This is the API that dsjob uses.