Search found 64 matches

by dh_Madhu
Tue Mar 24, 2009 4:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using sequence job to read multiple files of directory
Replies: 18
Views: 14538

EXECUTE_COMMAND (Uses wildcard to get files and uses the ls -m parameter ......but without a comma ----> StartLoop (this is now looping through a list but looking for a comma which does not exist !" Now why not try the ls -1 too .....you dont have to worry about the comma's... :) . ...but for ...
by dh_Madhu
Tue Mar 24, 2009 4:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of jobs in Datastage
Replies: 6
Views: 4065

try this "SELECT COUNT(*) FROM DS_JOBS" in the Datastage administrator...
by dh_Madhu
Thu Mar 19, 2009 9:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job failure due to space
Replies: 9
Views: 3335

Yes, also try splitting the job horizontaly if your business rules allow you to do that. Job1 Ds1---- Join 1----- Funnel -------- Sort ------- Ds5 Ds2---- Job2 Ds3---- Join 2----- Funnel -------- Sort ------- Ds 6 Ds4---- Job3 Ds5---- Join 2----- Funnel -------- Sort ------- Ds 7 Ds6----
by dh_Madhu
Wed Mar 18, 2009 9:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using sequence job to read multiple files of directory
Replies: 18
Views: 14538

Also try executing ls -1 which forces the out put into one-entry-per-line and feed it to the start loop activity marking the "List loop" as its loop type.
by dh_Madhu
Thu Mar 12, 2009 8:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Varchar Field Truncation Issue : Sequential File
Replies: 8
Views: 2754

Did you view the data through the seq file....also check the column ordinalities between the source and the target..
by dh_Madhu
Fri Feb 27, 2009 11:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: retrict the number of process of one stage with in a job
Replies: 9
Views: 3379

may be develop a server job ....Database server can be taxed for the extraction process....
by dh_Madhu
Fri Feb 27, 2009 11:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning Message: Cannot preserve partitioning
Replies: 8
Views: 11268

As the default settings are Parallel (Read) and Propagate(write) in a transformer, this becomes a conflict for the sequential file stage which writes in sequential mode while actually receiving them in parallel. By clearing the default mode, we are paving the way acceptable to the seq file.
by dh_Madhu
Fri Feb 27, 2009 10:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: locating job sequence in project
Replies: 4
Views: 2047

Go to the Datastage Administrator and type the following query SELECT CATEGORY FROM DS_JOBS WHERE NAME = 'sequencename';
by dh_Madhu
Fri Feb 27, 2009 9:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implementing lengthy transformation logic
Replies: 12
Views: 3487

Try what John has said. I have done it that way before for a similar requirement.....
by dh_Madhu
Wed Oct 24, 2007 5:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 load option error
Replies: 1
Views: 857

Pointing the Message file option to the /tmp directory solved the issue.
Looks like the default directory had no write permission.
by dh_Madhu
Wed Oct 24, 2007 4:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 load option error
Replies: 1
Views: 857

DB2 load option error

Hi, Using db2 stage, while an insert is attempted by using the write method 'Load', a fatal error occurs hinting at the following... DB2 Load Binary Error. Error in accessing a file or path of type "TEMP_FILE" during load or load query. Reason code: "1". ....while the other write...
by dh_Madhu
Tue Oct 23, 2007 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 stage performance issue
Replies: 13
Views: 7272

yes! This is exactly what I intend to do.
Thanks.
by dh_Madhu
Mon Oct 22, 2007 9:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 stage performance issue
Replies: 13
Views: 7272

Well, its a incremental load and the real bottle neck seems to be the sequencer number generated in the database which does not allow the parallel processing in db2. Earlier while generating numbers using a surrogate key stage, the job took 30 secs to run a million records aparently using the luxury...
by dh_Madhu
Mon Oct 22, 2007 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 stage performance issue
Replies: 13
Views: 7272

Well, a sequential load and a collector type of sort merge did raise the performance from 147 rows/sec to 3700 rows/sec. wonder if this could still be increased? A new insert to the table actually showed a 55000 + rows/sec but the database seems to insert at a very low rate. Has anybody got anything...
by dh_Madhu
Mon Oct 22, 2007 4:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 stage performance issue
Replies: 13
Views: 7272

droping the sequence number generator and placing a surrogate key generator improved the performance to very marginal levels....around 470 rows/sec only