Search found 6797 matches

by DSguru2B
Thu Mar 22, 2007 9:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion Function
Replies: 15
Views: 4539

Are you experiencing this behaviour with all the records or just few records? Increase the size a little bit more and see what happens. Lets debug this part first and then we shall look at fixing the size.
by DSguru2B
Thu Mar 22, 2007 9:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Duplicates Stage
Replies: 8
Views: 2457

Nothings dumb. We learn through our mistakes. :wink:
by DSguru2B
Thu Mar 22, 2007 9:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Format in Parallel job
Replies: 17
Views: 5360

Who created this file? Is it some external process or DataStage? And if datastage did, then did a server job create it or a px job?
by DSguru2B
Thu Mar 22, 2007 9:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: query based on conditon???
Replies: 19
Views: 3382

Depending upon the conditions, build your insert/update logic and load it to a file (.sql). Then execute the .sql file from command line which you can do in after job subroutine using ExecSh.
by DSguru2B
Thu Mar 22, 2007 9:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: De-Duplication of Invoice data
Replies: 9
Views: 3436

Based on the parameters, sort them and do a row by row comparison. Search for comparison techniques.
by DSguru2B
Thu Mar 22, 2007 9:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Duplicates Stage
Replies: 8
Views: 2457

Yes they are. You can do it at the unix level using uniq. But get your code fixed. Its not a woo-haa error that cannot be fixed. Do an exact search on "Tsort merger aborting" for more information.
by DSguru2B
Thu Mar 22, 2007 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incorrect values retrieved from Oracle
Replies: 8
Views: 3115

Welcome Aboard
What stage are you using to pull the data? How did you import the table definition? If you do a select * from your favourite sql tool (TOAD or oracle developer) do you see the same behaviour?
by DSguru2B
Thu Mar 22, 2007 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Obscure error
Replies: 3
Views: 1153

He truely is. Time to mark your post as "Resolved".
by DSguru2B
Thu Mar 22, 2007 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Duplicates Stage
Replies: 8
Views: 2457

Run your job then simultaneously keep running df -k /tmp to keep monitoring when it runs out. I know unix sort uses this directory by default. I am not sure what tsort uses.
by DSguru2B
Thu Mar 22, 2007 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Duplicates Stage
Replies: 8
Views: 2457

Its the /tmp space that the tsort uses to store intermediate temp files. Send in sorted data and uncheck the option of "Perform Sort".
by DSguru2B
Wed Mar 21, 2007 8:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: All jobs deleted from the project
Replies: 6
Views: 1677

Was everyone signed off when you did REINDEX ALL? Try creating a job which was already present. If it does'nt allow you to do it that means the jobs are there. You need to run reindex again with everyone signed off from the server. If you are able to create an identical named job, that means your jo...
by DSguru2B
Wed Mar 21, 2007 8:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stop flow of Warnings in Director
Replies: 3
Views: 643

Get out of the director and go back in and clear the log. The display refreshes every several seconds. The warnings are already logged. Its just the display that is slow.
by DSguru2B
Wed Mar 21, 2007 5:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: All jobs deleted from the project
Replies: 6
Views: 1677

You sure the jobs are deleted or they are just not visible in the repository? Click on new, in the designer and go to the last tab, its called Recent Jobs, I think. You should see your most recently accessed jobs there. Click on any one and hit Open. If the job pops open, that means the jobs are the...
by DSguru2B
Wed Mar 21, 2007 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Zoned DataType Fields
Replies: 3
Views: 1348

Look into sequential file stage. It has property of ebcidic to ascii in its properties, under format tab. See if that works. Else use server job as it has a function that converts PicS9 to ascii. That will work for you as I looked at zoned sample data here and its the same as as PicS9. I have done t...
by DSguru2B
Wed Mar 21, 2007 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: lookup
Replies: 4
Views: 1109

A couple of ways:
-Merge stage
-Hashed file
-Loading your files to work tables and passing full outer join sql
Refer herefor more details on the first two.