Search found 816 matches

by us1aslam1us
Wed Aug 05, 2015 5:56 pm
Forum: General
Topic: Sequence status is 99
Replies: 18
Views: 10382

This is the suggestion i got from IBM: InfoSphere DataStage: Problems when running multiple instances of a job from a job sequence, or from a script using dsjob Environment variable: DSWaitResetStartup When multiple instances of a job are run from a sequence, and one or more of the job instances are...
by us1aslam1us
Tue Aug 28, 2012 11:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update is not working correctly in Oracle stage
Replies: 9
Views: 5256

Check the data type for the ZIP column in the target table. Also verify what data you are feeding into this column? Is it integer, text, text with white spaces?

sAM
by us1aslam1us
Wed Jun 06, 2012 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01722: invalid number
Replies: 17
Views: 16289

Andrea,

Where do we need to change these options? Can you be little more specific about this.

Sorry Craig.... Just going through the same issue.

Thanks
sAM
by us1aslam1us
Wed Apr 25, 2012 12:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: New row in source is not loaded into target table
Replies: 3
Views: 3079

NOTFOUND works fine when performing lookup on Hashed Files but for the Table lookup it is always better to use the null check.

sAM
by us1aslam1us
Wed Apr 25, 2012 11:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need Help to Implement Logic
Replies: 14
Views: 8242

Vineet,

It can all be done by using a stage variable to store the previous value and populate this vale in the current Column.

But why would anyone like to modify the Amounts associated with Products in such a fashion unless this is some kinda fix.

sAM
by us1aslam1us
Tue Oct 04, 2011 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic for implementation of the req
Replies: 4
Views: 3099

It is quite hard to understand your requirement. Share some information on how your input data looks and what exactly are you expecting in your output.

Sample Data??

sAM
by us1aslam1us
Wed Mar 30, 2011 1:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to pad zero to a string with out using transformer stage
Replies: 2
Views: 2705

Why not transformer stage???

What is your source? In case if you are pulling the data from some database then you can perform this operation in your source SQL statement itself.

sAM
by us1aslam1us
Thu Oct 22, 2009 3:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error with DRS stage
Replies: 3
Views: 3306

Hello Abha,

We went through the same Issue couple of days ago and found that there is bug fix (patch) available for this. Talk to you Serive Provider.

sAM
by us1aslam1us
Fri May 29, 2009 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in timestamp_from_string function in Modify stage
Replies: 1
Views: 2407

Nothing wrong here but change [%yyyy-%mm-%dd hh:nn:ss] to [%yyyy-%mm-%dd %hh:%nn:%ss] and try it.
by us1aslam1us
Tue Mar 17, 2009 1:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: get Current TimeStamp-(MINUS) 1 Day
Replies: 5
Views: 7671

Have you checked the function TimestampFromSecondsSince()???
by us1aslam1us
Tue Mar 17, 2009 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: remove leading zeros in decimal field in sequential file
Replies: 26
Views: 78041

I hope this will solve your issue..

Code: Select all

Trim(DecimalTostring(In.Col),'0','L')
sAM
by us1aslam1us
Tue Nov 25, 2008 2:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Target table has more data than Source View
Replies: 2
Views: 2218

There might be two seperate issues you are facing. ''OCI has fetched truncated data'' There might be some column in the source which is having column length greater than the one in the target. ''ORA-01002: fetch out of sequence '' I would recommend you to search the forum there had been few differen...
by us1aslam1us
Tue Nov 25, 2008 2:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Increment sequence
Replies: 2
Views: 2370

Simple solution will be to use stage variables. Try something like this.... Sort the data on your three columns. Initialize sVValue as 1 sVCurrent = COLA:COLB:COLC sVValue = If sVCurrent = sVPrevious then sVValue+1 else sVValue sVPrevious = sVCurrent And use sVValue in your column derivation of INT ...
by us1aslam1us
Tue Nov 25, 2008 2:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with paralle direct load
Replies: 1
Views: 1744

Did you try using peek or flat file as output to test? I really doubt that there might be some tranformations which is causing this issue. Share you Job Design...
by us1aslam1us
Tue Nov 25, 2008 2:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adding the amount column value from Sequencial file.
Replies: 4
Views: 2298

If your source already have it as decimal then what is stopping you to use aggregator for Summing those values??