Search found 3329 matches

by Sainath.Srinivasan
Thu Apr 16, 2009 3:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compilation problem
Replies: 18
Views: 3484

New installation ?

Were you able to compile earlier ?
by Sainath.Srinivasan
Thu Apr 16, 2009 3:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance issue
Replies: 3
Views: 1201

What about the jobs that do not access from RDBMS or load back into them ?
by Sainath.Srinivasan
Thu Apr 16, 2009 3:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reconciliation Error
Replies: 2
Views: 813

You reconciled with what? How did you get the numbers?
by Sainath.Srinivasan
Wed Apr 15, 2009 3:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maximum length of SQL in Oracle query
Replies: 11
Views: 3040

Can you put together a test of where it breaks ?
by Sainath.Srinivasan
Wed Apr 08, 2009 4:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need help with pivoting columns
Replies: 13
Views: 5102

I have not been through your links so far. But do very much appreciate your effort.

Alternatively you can append a dummy line to incoming file, locating the presence of which in your input stream will determine end-of-file.
by Sainath.Srinivasan
Wed Apr 08, 2009 4:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Controller Problem
Replies: 4
Views: 1579

Do you have a "wait for file" ?
by Sainath.Srinivasan
Wed Apr 08, 2009 2:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sqlcode:1403 for insert records
Replies: 4
Views: 8502

Do you have any insert trigger?
by Sainath.Srinivasan
Tue Apr 07, 2009 10:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: result rows are not showing up-total mismatch
Replies: 18
Views: 4875

Without seeing your table defn. and dataset it is not feasible to comment.
by Sainath.Srinivasan
Tue Apr 07, 2009 10:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need help with pivoting columns
Replies: 13
Views: 5102

Code: Select all

yourStgField = if (prevKey = Key) 
then inField Else 
yourStgField : delim : inField 
by Sainath.Srinivasan
Tue Apr 07, 2009 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: convert date column to minute minus one
Replies: 2
Views: 850

There are different methods - even discussed here before.

What have you tried so far ?
by Sainath.Srinivasan
Tue Apr 07, 2009 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transpose records
Replies: 1
Views: 967

Search for pivot.

There is also an FAQ about this.
by Sainath.Srinivasan
Tue Apr 07, 2009 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer compilation error
Replies: 12
Views: 3815

Maybe due to missing or unconfigured c++ compiler.

Search for "compiler error"
by Sainath.Srinivasan
Tue Apr 07, 2009 6:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need help with pivoting columns
Replies: 13
Views: 5102

or simply sort the incoming data and append to existing using stage variable. Something like sort input -> tx -> hashed file and in tx do yourStgField = if (prevKey = Key) then inField Else yourStgField : delim : inField where yourStgField is a stage variable.
by Sainath.Srinivasan
Tue Apr 07, 2009 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: result rows are not showing up-total mismatch
Replies: 18
Views: 4875

To solve, you must find the missing rows and the reason why they are being ignored.

You can
a.) clear the 3rd party s/w and insert the 900 rows successfully loaded again.
b.) load 1 row at a time and see which row fails.