Search found 53125 matches

by ray.wurlod
Mon Jul 29, 2013 3:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: communication error :SQLSTATE = 40003:
Replies: 3
Views: 2348

Data are moved through buffers - there is a set of buffers (= virtual data set) associated with each link in the job design. Data are moved in quantities affected by the buffer settings - by default the buffer size is 3MiB and threshold for beginning to resist input is 50%. On that basis, you would ...
by ray.wurlod
Sat Jul 27, 2013 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: setting User Status in a parallel job
Replies: 16
Views: 23599

Once you know the location of the user status area - I'm sure I've documented this somewhere on DSXchange - you can write a parallel routine that uses InterCall functions ic_open, ic_recordlock, ic_writev and ic_close to update that particular field (field #9 in one of the RT_STATUSnnn records). You...
by ray.wurlod
Sat Jul 27, 2013 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: State File Demystified
Replies: 2
Views: 1080

It seems you have set up your state file with a block size of 1.
by ray.wurlod
Sat Jul 27, 2013 3:49 pm
Forum: General
Topic: Job Report Through Unix - Including File Paths
Replies: 3
Views: 1242

All of the design-time information can be had from DS_JOBOBJECTS table. Much of the information about relationships between stages is also to be found in the RT_CONFIGnnn table for the job, while the run-time status is to had from the RT_STATUSnnn table. However the structure of these tables is not ...
by ray.wurlod
Sat Jul 27, 2013 2:04 am
Forum: General
Topic: Job Report Through Unix - Including File Paths
Replies: 3
Views: 1242

Sounds like you need to create your own script, then.
by ray.wurlod
Sat Jul 27, 2013 2:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading csv file having blank data for date column
Replies: 9
Views: 3012

ArndW wrote:I'm not sure about year 0000 being valid, I think it might be.
It isn't. The day prior to 0001-01-01 is 31 December, 1BC.
by ray.wurlod
Sat Jul 27, 2013 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling a RESTful service in DataStage
Replies: 9
Views: 14242

You should be able to use a WebServices Transformer stage, as you suggest. But the service provider must be able to handle XML with header and body.
by ray.wurlod
Sat Jul 27, 2013 1:57 am
Forum: General
Topic: Encrypted password for dscmdimport.exe
Replies: 2
Views: 1592

encrypt.bat was new in version 8.7 and ends up invoking a Java class so, even if you could get the bat file, that would not be enough.

I can't recall whether you could read the parameters from a file with the dscmdexport command - you will need to check your documentation for all options.
by ray.wurlod
Fri Jul 26, 2013 4:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic XSD
Replies: 3
Views: 1460

That's an intriguing solution, Arun. Are you able to provide a concrete example?
by ray.wurlod
Thu Jul 25, 2013 5:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling a RESTful service in DataStage
Replies: 9
Views: 14242

What Andy posted is for inbound RESTful requests. I assume your requirement is to have a DataStage job as the requestor (client)? Is this correct? The actual method you use will depend on the transport layer - for example will your request be REST over HTTP? Might you use a Java class to make the ca...
by ray.wurlod
Thu Jul 25, 2013 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter Set Change - Compile Jobs
Replies: 12
Views: 13830

Another approach that I've seen at some sites is not to use Parameter Sets in server or parallel jobs; only to use Parameter Sets in sequences. In the Job activity the local parameter is fed its value from the parameter from the parameter set. Consistent parameter naming methodology is key to keepin...
by ray.wurlod
Thu Jul 25, 2013 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Use of ICONV/OCONV Functions in the Parallel Jobs.
Replies: 7
Views: 7698

To clarify what Andy has written, the engines (server and parallel) use different internal storage mechanisms. There's nothing to prevent you from creating parallel routines that perform Iconv() or Oconv() functionality, but that would be re-inventing the wheel - in general there are other ways to a...
by ray.wurlod
Thu Jul 25, 2013 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal round off issue
Replies: 1
Views: 1293

Investigate the environment variable APT_DECIMAL_INTERIM_SCALE, the "type" argument of the DFloatToDecimal() function, and the Ceil() and Floor() functions.
by ray.wurlod
Thu Jul 25, 2013 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implementing date logic
Replies: 7
Views: 1650

You might also consult the FAQ post on Common Date Offsets in Parallel Jobs
by ray.wurlod
Thu Jul 25, 2013 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Message to the DS Director Log from Parallel Job
Replies: 4
Views: 1779

The "more natural way" is to create a parallel routine and to call that from the parallel Transformer stage.

You might also consider creating a BuildOp.