Search found 5 matches

by franco
Tue Jun 22, 2010 12:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job in Hung state
Replies: 3
Views: 2010

Re: Job in Hung state

do you hav more than 1 row for the primary key combination in the dataset and the job execution mode is parallel ?
by franco
Thu Mar 25, 2010 9:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs Running Unusually long time after large load
Replies: 10
Views: 3831

Re: Jobs Running Unusually long time after large load

If you are using the big table in the 4 jobs , after the table is loaded you can do collect stats on the table before starting the jobs
by franco
Thu Mar 25, 2010 4:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to pass Query from file to ODBC stage
Replies: 11
Views: 4847

Welcome aboard. You're wrong. It can be done in the one sequence, precisely as datisaq outlined. ... because in one of our job , we have the following sequence shell script to update the <param1> --> job that use <param1> but the job was using the old value (i.e. the value before the sequence has s...
by franco
Thu Mar 25, 2010 4:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling Zeros with Decimal dataType
Replies: 10
Views: 5854

Re: Handling Zeros with Decimal dataType

Trim(col,"0",'L') will work with string data types(varchar..) and not with decimal Could you please anybody explain how to remove the Zeros with Decimal datatype: I am having source Col with Datatype decimal[20,2] i am getting data for example 000000000000000038.50 but i want to make targe...
by franco
Thu Mar 25, 2010 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to pass Query from file to ODBC stage
Replies: 11
Views: 4847

This can't be done from the same sequence. Because the value of the parameter will be initialized when the sequence start .If it is changed in the sequence, it will not reflect.Gurus, correct me if i am wrong This you can do at a job sequence level. Main sequence:- Job1----->ExecCommand---->job2 In ...