Search found 53125 matches

by ray.wurlod
Thu Apr 20, 2006 4:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: calling oracle SP which returns ref.cursor using STP
Replies: 14
Views: 7804

Why not post a request on the Enhancements Wish List forum? Here or DeveloperNet or both.
by ray.wurlod
Thu Apr 20, 2006 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Partitioner, Link Collector satges
Replies: 3
Views: 1153

Link Partitioner splits a single stream into up to 64 separate streams with identical metadata.
Link Collector gathers them back into one stream.
Each creates a process of its own, so you must enable inter-process row buffering.
by ray.wurlod
Thu Apr 20, 2006 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dssmtpmail.exe
Replies: 5
Views: 1599

Should be in the bin folder wherever you've installed the Engine, for example C:\Ascential\DataStage\Engine\bin, along with all the other server-side executables.
by ray.wurlod
Thu Apr 20, 2006 4:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Iconv internal date format after migration v7.5
Replies: 6
Views: 1859

If you have NLS installed and enabled you set your default date format in the TIME locale category. If you do not have NLS installed, or if it is installed but not enabled, then the default date format is set at field LOC0020 in a file called msg.text in the Engine (or DSEngine) directory. Alternate...
by ray.wurlod
Thu Apr 20, 2006 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validating a Job
Replies: 3
Views: 852

Validating a job means doing everything the job does except processing rows. It even creates missing hashed files, if there is a Hashed File stage with an input link.
by ray.wurlod
Thu Apr 20, 2006 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RenameAllJobs - Easy ?
Replies: 22
Views: 5265

Without access to DataStage I can't say. It's not ALL in my head, you know!
by ray.wurlod
Thu Apr 20, 2006 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Virtual Memory Warning
Replies: 2
Views: 1294

1. Install on a different platform to prevent the warning from occurring.

2. Create a message handler to demote the warning to an informational message.

These are alternatives.
by ray.wurlod
Thu Apr 20, 2006 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aborting jobs when data source empty
Replies: 13
Views: 3183

kumar_s wrote:Iam still thinking a way to capture the file size (alone) from dos prompt.

Code: Select all

test -z $filename

You have MKS Toolkit installed, so you have the test command. This can also be used in an if construct in a shell script using square brackets.

Code: Select all

if [ -z $filename ] ...
by ray.wurlod
Thu Apr 20, 2006 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance issue with pivot stage
Replies: 3
Views: 1141

That's right, by default. That's why it's not x4. But you can override the Execution Mode, provided the data are partitioned on the pivot keys.
by ray.wurlod
Thu Apr 20, 2006 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Type Conversion Using Modify Stage
Replies: 4
Views: 2993

There are quite a few errors in this Chapter. For example it gives the Transformer stage function for null handling rather than the Modify stage function. There are also errors of omission, such as the fix_zero option for decimal numbers. Be very, very careful. Check anything you propose to do with ...
by ray.wurlod
Thu Apr 20, 2006 5:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UniVerse Databse
Replies: 2
Views: 786

Welcome aboard. :D In the Manager client select the table definition then click on the Usage Analysis tool (it looks like a chemist's beaker). Provided you've been professional about metadata management - never changing table definitions in jobs after you've loaded them - this should show all the jo...
by ray.wurlod
Thu Apr 20, 2006 5:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation problem
Replies: 8
Views: 1518

Welcome aboard. :D

The most usual reason for this error is that you lack write permission on the client machine, where the XML file needs to be generated as part of compiling a job sequence.
by ray.wurlod
Thu Apr 20, 2006 5:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RenameAllJobs - Easy ?
Replies: 22
Views: 5265

It's still an easy change with SQL, even though you need a pair of UPDATE statements per job. You could use inline prompting to create a stored procedure (paragraph, that is) to effect the change for one job, and another that looped through all jobs. PA * <<I2,Old Name>> UPDATE DSJOBS SET NAME = 'pr...
by ray.wurlod
Thu Apr 20, 2006 5:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Job error with multiple instance
Replies: 9
Views: 2340

I too have been programming in this language since the early 1980's and have always used READSEQ in this fashion. It is not used as a function. One is using the "Boolean context" of READSEQ - the same context that drives the THEN/ELSE decision can also be used to drive the WHILE decision. It is perf...
by ray.wurlod
Thu Apr 20, 2006 5:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aborting jobs when data source empty
Replies: 13
Views: 3183

Yes, but prefer to issue a warning (UtilityWarningToLog routine) and exit (Terminator activity) rather than to abort. Create a small job that selects COUNT(*) from source into a text file, then read this text file (Execute Command activity) then, depending on the result, either continue with regular...