Search found 6797 matches

by DSguru2B
Fri Jun 22, 2007 7:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion issue in oracle stage
Replies: 1
Views: 907

Welcome Aboard :)
If you do a search on each and every one of the errors (use key words), you will see that they have been covered in detail before, time and again. Please use the search facility.
by DSguru2B
Fri Jun 22, 2007 7:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: when lookup returns multiple rows - accomidate in same row
Replies: 2
Views: 1268

Get the three rows, pass it through a transformer where you need to utilize stage variables to do this vertical pivoting. Something to the effect of, compare present key with previous rows key, if same, concatenate the row values with each other. Pass it through remove duplicate stage and retain the...
by DSguru2B
Fri Jun 22, 2007 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Execute Same Job with 3 files?
Replies: 4
Views: 695

You can also go for a single sequential file stage as source. make the job multiple instance and run each instance with the three source files one after the other.
by DSguru2B
Thu Jun 21, 2007 1:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DecimalToDecimal Syntax
Replies: 6
Views: 4412

Can you have input coming in with a valid scale (00010002.2) ?
by DSguru2B
Thu Jun 21, 2007 12:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Arithemtic Overflow
Replies: 8
Views: 1298

Check out Brad's last reply here.. Make sure you converted the COBOL datatypes to DataStage datatypes correctly.
Its one of those decimal fields that seem to be the culprit. Which one, you will have to do some investigative work.
by DSguru2B
Thu Jun 21, 2007 12:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Arithemtic Overflow
Replies: 8
Views: 1298

What are you doing in the job? Any sort of arithmatic operation? Maybe you have defined a column as int at getting a value suitable for BigInt. Possible?
by DSguru2B
Thu Jun 21, 2007 12:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DecimalToDecimal Syntax
Replies: 6
Views: 4412

Precision is the length of the field and scale is the numbers after the decimal. For exact syntax, check DS help for "Parallel Job Functions" or search here.
by DSguru2B
Thu Jun 21, 2007 11:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DecimalToDecimal Syntax
Replies: 6
Views: 4412

It is because your trying to fit a decimal number into a varchar field. It will not work. You need to do StringToDecimal() to fix the lenth and precision and then use DecimalToString() to convert it back to varchar.
by DSguru2B
Thu Jun 21, 2007 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read data from Excel
Replies: 7
Views: 2629

How are you accessing the .xls sheet? via odbc or sequential file stage? You need to convert it to csv before reading it via sequential file stage.
by DSguru2B
Thu Jun 21, 2007 9:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning in the transformer stage while running the job
Replies: 2
Views: 988

Do an exact search on "has a partitioning method other than entire specified". You will find many posts explaining the root of the warning and how to get rid of it.
by DSguru2B
Thu Jun 21, 2007 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameters in DSJOB.exe
Replies: 3
Views: 4429

How exactly are you running the dsjob command and passing the parameters?
Whatever values need to be determined during run time can be parametrized and its value can be passed during run time.
Another question, how are you running dsjob.exe, used for windows, on a unix box???
by DSguru2B
Thu Jun 21, 2007 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: folding a single record into multiple records at fixed width
Replies: 24
Views: 7200

Ahh, now I see. For some reason I was stuck on the line terminator. Thanks for the clarification.
by DSguru2B
Thu Jun 21, 2007 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding most recent effectitive salary date
Replies: 9
Views: 2253

In other words, sort by Id and Date, pass it via aggregator, group by Id and Salary, retaining MIN() date, pass it via remove duplicate stage and retain last record (most recent salary).