Search found 9 matches

by Abhilasha
Wed Jul 18, 2007 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query with date field
Replies: 5
Views: 2256

Thanks...
Its working when i gave diff date formate.
by Abhilasha
Tue Jul 17, 2007 6:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query with date field
Replies: 5
Views: 2256

Query with date field

Hi, In the Informix client database stage, I am writing query as given below: SELECT col1, col2, col3, col4, batch_dt FROM tab_nam WHERE batch_dt<Today-13 units month and batch_dt >= #start_date# But it is not selecting correct set of records. Job runs well and data is also selected, but " batc...
by Abhilasha
Tue Jun 19, 2007 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Increasing datastage job performnace
Replies: 7
Views: 2830

can u suggest some approach with existing resources and technology.
by Abhilasha
Tue Jun 19, 2007 1:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Increasing datastage job performnace
Replies: 7
Views: 2830

Right now for 10000 its taking 4-5 mins. And later the size of table is expected to be more, so it will go upto 100,000 records or even more.
by Abhilasha
Tue Jun 19, 2007 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Increasing datastage job performnace
Replies: 7
Views: 2830

Increasing datastage job performnace

Hi, I have developed a job, which select records from 1 table and inserts into other table. I have used Informix enterprise stage for source table and target table. I have transformer stage for mapping the columns. The source table has huge amount of data. Currently its more than 10,000. I want to i...
by Abhilasha
Tue Dec 27, 2005 9:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to write to DML's in User-defined query.
Replies: 6
Views: 2328

Thank u vey much.

Regards,
Abhilasha
by Abhilasha
Wed Dec 21, 2005 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to write to DML's in User-defined query.
Replies: 6
Views: 2328

Is their any other way to do this. Can we do this using User Defined Query
by Abhilasha
Tue Dec 20, 2005 6:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to write to DML's in User-defined query.
Replies: 6
Views: 2328

Re: How to write to DML's in User-defined query.

Hi, I am trying to use following SQL's in the User Defined section of Informix stage: UPDATE table1 SET update_user_id ='-5' ,update_type_cd = 'D' WHERE merch_num=? AND cso_cd=? AND plan_type_cd=?;; DELETE FROM table2 WHERE merch_num=? AND cso_cd=? AND plan_type_cd=?;; 1st query (Update) is not wor...
by Abhilasha
Fri Dec 16, 2005 4:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to write to DML's in User-defined query.
Replies: 6
Views: 2328

How to write to DML's in User-defined query.

Hi, I am trying to use following SQL's in the User Defined section of Informix stage: UPDATE table1 SET update_user_id ='-5' ,update_type_cd = 'D' WHERE merch_num=? AND cso_cd=? AND plan_type_cd=?;; DELETE FROM table2 WHERE merch_num=? AND cso_cd=? AND plan_type_cd=?;; 1st query (Update) is not work...