Search found 6797 matches

by DSguru2B
Mon Jun 04, 2007 11:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob
Replies: 18
Views: 7135

Did you do what I asked you to do in my very first reply?
by DSguru2B
Mon Jun 04, 2007 11:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Copying set of tables in to different tables
Replies: 12
Views: 1970

In the OPEN command of your target database stage, pass the truncate command and use regular LOAD method. Is that what your asking or am I missing something here? :roll:
by DSguru2B
Mon Jun 04, 2007 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running PX on separate CPU's.
Replies: 13
Views: 3408

How much the cpu is utilized and what process utilizes what cpu is controlled by the kernel. It is not possible to control that at this high level of programming.
by DSguru2B
Mon Jun 04, 2007 9:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting default date value
Replies: 7
Views: 1544

Your time format is not correct. Put the following in the format mask

Code: Select all

"%yyyy-%mm-%dd %hh:%nn:%ss"
by DSguru2B
Mon Jun 04, 2007 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aborting the job in transformer stage
Replies: 1
Views: 653

Have a second link going from your transformer to any stage, say a peek stage, with the constraint set to varFlag = 1. In the properties for this link, set Abort after 1 row. This way when your stage variable condition is 1, the record will go down the second link and it will raise an abort.
by DSguru2B
Mon Jun 04, 2007 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob
Replies: 18
Views: 7135

You need to set the environment before the dsjob can be recognized by the kernal. Perform the following

Code: Select all

cd `cat /.dshome`
. ./dsenv

Once you have done that, now try the dsjob command.
by DSguru2B
Mon Jun 04, 2007 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot get shared access to executable file
Replies: 4
Views: 1408

Is your problem a reproduceable error? Did you try running it again? Maybe your system was overwhelmed at the time and hence your error. Refer to this post for more clarification.
by DSguru2B
Mon Jun 04, 2007 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transform Functions
Replies: 4
Views: 1119

Enterprise Edition has its own set of transform functions. Some of them are the same as Server edition. Never the less, they are different for both the animals. If you absolutely have to use a server transform function in a parallel job, then you could either code the same logic in a C function and ...
by DSguru2B
Fri Jun 01, 2007 9:01 pm
Forum: General
Topic: How did Datastage get it's name?
Replies: 5
Views: 1445

Thats an excellent history portrayed by Vincent. Thankyou Vincent.
by DSguru2B
Fri Jun 01, 2007 12:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with using BigInt datatype with ODBC Enterprise
Replies: 15
Views: 15570

True. That might be the case in the long run. But this was a short term, relatively small amounts of data and hence was an acceptable workaround. You should try a test. Send in a large integer, thats larger than the integer range, into a BIGINT column, but mask it as integer or numeric in datastage....
by DSguru2B
Fri Jun 01, 2007 9:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with using BigInt datatype with ODBC Enterprise
Replies: 15
Views: 15570

I had this problem a couple of years ago. I just changed the datatype within my job to integer as a workaround.
by DSguru2B
Fri Jun 01, 2007 8:31 am
Forum: General
Topic: Problem while working with UV -admin -info
Replies: 9
Views: 2616

Why in the world are you trying to execute ./.uvconfig?
What commands are you running. If you following my commands, exactly and your still getting an issue then something is wrong at your end. Can you get into the dshome directory? Do you have read/execute permission on dsenv?
by DSguru2B
Fri Jun 01, 2007 8:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date plus months
Replies: 6
Views: 1629

Only with a basic transformer, not with px transformer.
by DSguru2B
Fri Jun 01, 2007 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date plus months
Replies: 6
Views: 1629

Exactly my point. All these validty checks and incrementions need to be handled in a structered piece of code. Go for a routine.