Search found 3329 matches

by Sainath.Srinivasan
Thu Dec 11, 2008 4:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write code to extract record from multiple tables to Files.
Replies: 7
Views: 2760

Maybe you can concat them into a single column with comma sep. That way one job will do.
by Sainath.Srinivasan
Thu Dec 11, 2008 4:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error
Replies: 2
Views: 815

Start your job monitor. Search for the error message.
by Sainath.Srinivasan
Thu Dec 11, 2008 4:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameterize Pivot logic
Replies: 8
Views: 1630

If it is in seq file (source), you can use awk in the first stage itself to re-organize
by Sainath.Srinivasan
Thu Dec 11, 2008 4:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameterize Pivot logic
Replies: 8
Views: 1630

If it is in seq file (source), you can use awk in the first stage itself to re-organize
by Sainath.Srinivasan
Thu Dec 11, 2008 4:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row Generator & Year Date
Replies: 8
Views: 2882

This can be resolved by having a calendar table
by Sainath.Srinivasan
Tue Apr 03, 2007 9:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Determine the month difference between 2 dates
Replies: 5
Views: 4966

Just to add to the logic.....you need to check whether the 'dd' parts are different.

i.e. 2001-01-02 to 2001-02-01 is not one month (if my understanding of your requirement is correct)

So you can add
+ (if second_dd > first_dd then -1 else 0)
by Sainath.Srinivasan
Tue Mar 27, 2007 3:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatype warnings from oracle!
Replies: 13
Views: 4772

The warning is not from oracle but from DataStage.

Check the column formats within the job and in the stage mentioned by the warning.
by Sainath.Srinivasan
Tue Mar 27, 2007 3:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic for combination
Replies: 3
Views: 1251

Even though I am not sure why you need that, a join must meet your requirement.
by Sainath.Srinivasan
Fri Mar 23, 2007 5:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Upsert data from multiple files to single file
Replies: 3
Views: 1036

Or simply run file2 followed by file1....if loading both does not cause any harm !!!!
by Sainath.Srinivasan
Wed Mar 21, 2007 9:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job scheduling
Replies: 3
Views: 1118

Please 'search' to find loads of answers.
by Sainath.Srinivasan
Tue Mar 20, 2007 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: truncating varchar field
Replies: 5
Views: 1296

Varchar and fixed width?

There must be some place where you fix the length in output.
by Sainath.Srinivasan
Tue Mar 20, 2007 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing Positive decimal with + sign
Replies: 13
Views: 3629

I believe if the input is <0 then do not disturbt else you can replace leading blank with '+'.
by Sainath.Srinivasan
Tue Mar 20, 2007 5:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Scheduling
Replies: 5
Views: 1759

Write a routine and call from sequence

Alternatively use OS features