Search found 53125 matches

by ray.wurlod
Tue Feb 09, 2010 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compilation of the job hanging
Replies: 17
Views: 4775

If you are paying an official support provider they are obliged to help you.

DSXchange is an all-volunteer site which, among other things, means that there can be no compulsion. Members post as, when and if they can.
by ray.wurlod
Tue Feb 09, 2010 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: source SQL from each job to a file
Replies: 3
Views: 1327

Typically (depending on stage type) there is an explicit entry showing the SQL that was executed. "Query" the log by finding that entry.
by ray.wurlod
Tue Feb 09, 2010 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a sleep functionality in DataStage
Replies: 12
Views: 14298

Yes, several.

There is a SLEEP command (argument in seconds or as HH:MM (24 hour clock)).

There are statements SLEEP (argument in seconds) and NAP (argument in milliseconds) that you can use in a server routine.

You have access to the operating system sleep command by various means.
by ray.wurlod
Tue Feb 09, 2010 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 - JOINing a TEMPORARY table
Replies: 3
Views: 2658

Probably wrong. At least not for that reason. The before SQL is executed on the same connection as the main part of the stage.
by ray.wurlod
Tue Feb 09, 2010 3:16 pm
Forum: General
Topic: Field Delimiter Error
Replies: 4
Views: 5875

You have specified a field delimiter but it's not found. The first line of your file appears to contain - or at least to begin with - "COLUMN_NAME". Perhaps your column headings are not correctly delimited, not correctly quoted, etc.
by ray.wurlod
Tue Feb 09, 2010 5:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: week id misiing
Replies: 3
Views: 975

Join to a generated data stream containing 1, 2, 3, 4, 5. Use a left outer join, with the generated data being the left input. Convert the null to a zero.
by ray.wurlod
Tue Feb 09, 2010 5:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running datastage job through Unix shell script
Replies: 19
Views: 18342

Then please prove to us that the shell variables all have values assigned.
by ray.wurlod
Tue Feb 09, 2010 3:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running datastage job through Unix shell script
Replies: 19
Views: 18342

Arnd asked you to tell us what is in the job log when you run the job from the dsjob command. You have not yet done so.
by ray.wurlod
Tue Feb 09, 2010 3:15 am
Forum: General
Topic: Run another job before finishing the AfterJobSubroutine proc
Replies: 9
Views: 2507

Only by running the job from the after-job subroutine without waiting for the second job to finish. But we still have no idea why you want to do this.
by ray.wurlod
Tue Feb 09, 2010 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding funnel
Replies: 4
Views: 1923

So what ARE you getting?
A funnel should produce the results you expect.
by ray.wurlod
Tue Feb 09, 2010 1:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting Parameter value within job control/routine
Replies: 5
Views: 5065

No, but you can use the DataStage macro DSJobName or the DataStage function DSGetJobInfo(DSJ.ME, DSJ.JOBNAME).
by ray.wurlod
Mon Feb 08, 2010 10:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: question regarding join and null
Replies: 4
Views: 4163

Officially (in any form of database query) joining on NULL is not permitted. For the purposes of the join, you can create a new column containing a particular value (an "in-band null") if your "join key" is null, and the actual value otherwise. Use these created columns to effect...
by ray.wurlod
Mon Feb 08, 2010 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installation Error during 8.1 install on linux suse 10
Replies: 1
Views: 1303

The step at which it's hanging appears to be reading your licensing XML file. Did you give it the correct location for that file?

I'm surprised that it's hanging at this point - I would have expected a fatal error to be thrown.
by ray.wurlod
Mon Feb 08, 2010 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: osh at command line
Replies: 1
Views: 801

Does your PATH include the parent directory of osh executable? If not you need either to include it or to use the full pathname of osh. Standard operating system stuff.