Search found 53125 matches

by ray.wurlod
Fri Apr 15, 2005 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abort Job While No rows in Source File
Replies: 4
Views: 1060

Add job control code (job properties dialog) to perform the check and issue a DSStopJob(DSJ.ME) request. Job control code, if present, is executed before any stage is opened. FileName = DSGetParamInfo(DSJ.ME, "FileName", DSJ.PARAMVALUE) If FileName < 0 Then Call DSLogFatal(&quo...
by ray.wurlod
Fri Apr 15, 2005 4:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating link metadata without losing derivations
Replies: 9
Views: 1657

While agreeing with you that you can't LOAD them preserving order, you can of course always reorder them subsequently by dragging the column name up or down in the grid. For some strange reason this does not appear to work in DRS, but it's OK in Transformer and most of the other stage types with whi...
by ray.wurlod
Fri Apr 15, 2005 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with Sequential file operations (BASIC)
Replies: 10
Views: 2347

Of course it can be done - a constraint expression can be any valid expression, and therefore can invoke routines. It occurred to me that the overhead of OPENSEQ and CLOSESEQ for each row, and therefore the repositioning of the file pointer to beginning of file for each row, could be alleviated by o...
by ray.wurlod
Fri Apr 15, 2005 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while running the parallel job
Replies: 5
Views: 1564

It's sometimes better to set PWD to "the current directory", that is ".".
by ray.wurlod
Fri Apr 15, 2005 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job reports failure (code 1)
Replies: 14
Views: 10131

So how DID you find out?

If you asked someone, how did THEY find out?

This list must exist somewhere!
by ray.wurlod
Fri Apr 15, 2005 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mainframe Job...
Replies: 7
Views: 2390

Re: Not clear...

what does that have to do with obtaining the data from somethn like a DB2 database on a mainframe ? Nothing at all, but it answers the original question. A mainframe job is a job to be executed in a mainframe environment. A parallel job is a job to be executed in a parallel (SMP or MPP) environment...
by ray.wurlod
Fri Apr 15, 2005 3:37 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Message Switch error indicating switch not started.....
Replies: 4
Views: 3114

Have you got a firewall blocking access through port 3070?
by ray.wurlod
Thu Apr 14, 2005 11:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Fix Repeat
Replies: 6
Views: 2533

I don't have access to DataStage this week. Will follow up (or someone else will) soon.
by ray.wurlod
Thu Apr 14, 2005 11:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with Sequential file operations (BASIC)
Replies: 10
Views: 2347

There is no sort function within DataStage. There is a Sort stage. You can also use the UNIX sort command. Syntax for the latter depends on what you want to do. Type man sort at a UNIX prompt to get help. I think you meant the SEEK statement. You can find this in the DataStage BASIC manual, C:\Progr...
by ray.wurlod
Thu Apr 14, 2005 11:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mainframe Job...
Replies: 7
Views: 2390

Because COBOL compilers on UNIX are very rare beasts indeed!

COBOL compilers on Windows are even rarer. :lol:
by ray.wurlod
Thu Apr 14, 2005 11:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Fix Repeat
Replies: 6
Views: 2533

You originally specified Routine, but now you're using link-qualified column names in the expression. Are you using a column derivation expression in a Transformer stage, or a Routine? If you're using a Routine, are you providing the values in a single argument, or multiple arguments? If you're usin...
by ray.wurlod
Thu Apr 14, 2005 11:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Very Interesting Bugs...
Replies: 3
Views: 1408

What NULL handing do you have set?
by ray.wurlod
Thu Apr 14, 2005 8:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with Sequential file operations (BASIC)
Replies: 10
Views: 2347

Are you calling this from every row??? That means you are opening the file anew for every row processed, horribly inefficient, and causing the overwriting you're experiencing since, immediately after opening the file, you're positioned at the beginning of the file ready to write (!). You need to pos...
by ray.wurlod
Thu Apr 14, 2005 8:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Purging of DataStage Log from Unix Script
Replies: 14
Views: 12853

There is a known bug in 5.2 - maybe in 4.1 as well - where the auto-purge settings do not propagate into newly-created jobs. It was fixed in 6.0.
by ray.wurlod
Thu Apr 14, 2005 8:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Engine StartUp error ..
Replies: 5
Views: 3899

.dshome is a hidden file that is supposed to exist in the root directory (the pathname of which is /, which is where /.dshome comes from - it's the fully qualified pathname of the file). This file should contain the pathname of the DataStage Engine directory. If /.dshome is not present - for exampl...