Search found 53125 matches

by ray.wurlod
Mon Jan 18, 2010 12:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I restart the server after particular job finished?
Replies: 32
Views: 37342

Hashed file read and write cache sizes are viewable in the Administrator client, project properties, Tunable tab.
by ray.wurlod
Sun Jan 17, 2010 10:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage freezing when opening Sequential File Stage
Replies: 11
Views: 4423

Not quite yet ready to reinstall. If you create a copy of the job can you open the Sequential File stage in the copied job?
by ray.wurlod
Sun Jan 17, 2010 8:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage freezing when opening Sequential File Stage
Replies: 11
Views: 4423

What else has happened on the client machine? Has any new software - ANY new software - been installed? Has any software been removed?

This is unusual behaviour and, being asymptomatic, difficult to diagnose.

The quick fix may be to re-install the DataStage client.
by ray.wurlod
Sun Jan 17, 2010 5:15 pm
Forum: IBM QualityStage
Topic: QualityStage Rule Sets
Replies: 3
Views: 2308

QualityStage Rule Sets

I am preparing some papers for the IOD conferences (in Rome in May and in Las Vegas in October) on QualityStage Rule Sets. I'd like to have a single slide with a list of the various kinds of classifiable data for which folks (that's YOU folks!) have built Rule Sets. All contributions are welcome. So...
by ray.wurlod
Sun Jan 17, 2010 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Job Dependencies
Replies: 3
Views: 3726

In short, no. You can certainly inspect the object code using a hex editor, but this is DataStage BASIC and uses completely idiosyncratic op-codes which aren't documented anywhere. You can use VLIST command to simulate an assembler-like representation of the object code, but I really don't think tha...
by ray.wurlod
Sun Jan 17, 2010 12:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: New DB2_Connect stage
Replies: 3
Views: 4123

Is the DB2INSTANCE environment variable correctly set for the process under which user ID the job runs? Check in the "environment variables" entry in the job log.
by ray.wurlod
Sun Jan 17, 2010 3:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp Conversion error AM/PM
Replies: 4
Views: 1795

The input was VarChar. It was the easiest - and probably best - solution.
by ray.wurlod
Sun Jan 17, 2010 3:02 am
Forum: General
Topic: Oracle call Interface
Replies: 1
Views: 916

OCI = Oracle Client Interface. Effectively, it is the Oracle client software that must be installed on your DataStage server. As far as Oracle is concerned, a DataStage job is just another client application. For server jobs there is a stage called OCI, which invokes the client interface directly. T...
by ray.wurlod
Sat Jan 16, 2010 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Invocations fail but Calling Sequence Succeeds
Replies: 3
Views: 1404

Warnings is not the same as failure (you can research this statement on DSXchange).

You will need Success and Otherwise triggers on the five activities leading to an Any sequencer then on through a stream of activities that ends with a Terminator to shut things down.
by ray.wurlod
Sat Jan 16, 2010 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp Conversion error AM/PM
Replies: 4
Views: 1795

Use substring operators to decompose the string into components (in stage variables to make it easier to understand), and If..Then..Else to adjust the hours to 24-hour clock, and then concatenate all the components to form the desired timestamp. If you have single-digit quantities you may need to ad...
by ray.wurlod
Sat Jan 16, 2010 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Normal Jobs Vs Multi Instance Jobs
Replies: 4
Views: 1527

Enabling multi-instance makes a difference in how the job is compiled, which allows DataStage to invoke the runtime engine with a job name including a dot. (Even when you start a multi-instance job with no invocation ID the dot is still there.) It remains true that a job with an identical name to an...
by ray.wurlod
Sat Jan 16, 2010 2:37 pm
Forum: General
Topic: How to run UV commands from Unix
Replies: 15
Views: 21580

Do stop thinking of it as UniVerse. DataStage ceased being UniVerse in version 6.0. Prefer dssh as the command to enter the DataStage shell. Otherwise the story is the same. But if you ever work in a site where UniVerse and DataStage are both installed, the difference is critical. And they ARE diffe...
by ray.wurlod
Sat Jan 16, 2010 2:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Append file contents to the existing file
Replies: 2
Views: 1648

Search DSXchange for OpenSequentialFile, in which there is an example.

Code: Select all

* Position to end of file
Seek filevariable,0,2
Then
   statements
End
Else
   statements ; * unable to position to EOF
End
by ray.wurlod
Fri Jan 15, 2010 9:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence dependent on status of another sequence
Replies: 6
Views: 2087

Why not have S0 control both S1 and S2?