Search found 6797 matches

by DSguru2B
Tue Jan 23, 2007 5:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best way to implement a business logic in C
Replies: 9
Views: 2573

I have never used a buildop so cannot comment on that but I dont see why there will be a performance penalty. Build your C code, run it as a routine and buildop, do some benchmark tests. Let us know what you find :)
by DSguru2B
Tue Jan 23, 2007 4:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best way to implement a business logic in C
Replies: 9
Views: 2573

Depends upon what your comfortable with. I prefer C routines.
by DSguru2B
Tue Jan 23, 2007 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No File Descriptor --ERROR
Replies: 21
Views: 11051

It generates it regardless. That option is just to get the OSH script for your viewing.
by DSguru2B
Tue Jan 23, 2007 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No File Descriptor --ERROR
Replies: 21
Views: 11051

pavankvk wrote:Why is it trying to import from the sequential file when you are writing to it? :?:

Thats only for view data.
by DSguru2B
Tue Jan 23, 2007 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs need recompiling
Replies: 4
Views: 1415

Version control also compiles the job but that happens as it imports the job.
by DSguru2B
Tue Jan 23, 2007 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Usage of Nodes
Replies: 2
Views: 1865

Welcome Aboard :P
Do an exact Search on key words "skew in the usage".
AND please post in the correct forum. In your case it will be IBM WebSphere DataStage Enterprise Edition.
by DSguru2B
Tue Jan 23, 2007 3:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with data types
Replies: 17
Views: 3666

You can mark this topic as Resolved too based on this.
by DSguru2B
Tue Jan 23, 2007 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle warning
Replies: 15
Views: 4104

Ahh...Cute...
by DSguru2B
Tue Jan 23, 2007 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wee have mystery dbx processes on our Unix server
Replies: 31
Views: 9529

PPID being 1 means its a zombie. Well cant your unix admin monitor whats going on and what process started as a result of which dbx was created ?
by DSguru2B
Tue Jan 23, 2007 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle warning
Replies: 15
Views: 4104

chulett wrote: What's the name of the source stage? QWERT? :wink:

How do you know that Craig :roll:
by DSguru2B
Tue Jan 23, 2007 3:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To reject all my duplicates
Replies: 8
Views: 5457

Do this. Sort the incoming data on your key. Define two stage variables in the transformer, say condFlag and prevVal. The will basically detect duplicates and flag them. Their both will be initialized to 0. Their derivation will be as follows: condFlag | if (prevVal <> src.key) then 'X' else...
by DSguru2B
Tue Jan 23, 2007 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with the DateGenericToInternal Function
Replies: 2
Views: 704

Do this

Code: Select all

OCONV(ICONV(trim(in.Col)[1,10],"D-YMD") + 1,"DYMD[4,2,2]":@VM:"MCN")

by DSguru2B
Tue Jan 23, 2007 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequences
Replies: 2
Views: 747

Welcome Aboard 8)
It has to be derived and fed to the surrogate key generator as a parameter. Click herefor a recent discussion on this topic.
by DSguru2B
Tue Jan 23, 2007 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get rid of mesg -Violation of PRIMARY KEY constraint
Replies: 13
Views: 7394

Array size is different than transaction size. Specify transaction size to 1 so that it commits after passing every row. This way if the same id comes again, it will find the record commited and update it.
WHile your at it you might as well set the array size to 1 too and avoid that warning.
by DSguru2B
Tue Jan 23, 2007 1:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal to COMP3
Replies: 18
Views: 7167

These decimal fields, are they signed. I mean, do you need to convert them to PicS9 or just comp3?