Search found 84 matches

by xch2005
Mon Apr 26, 2010 6:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with link count in Modify stage
Replies: 8
Views: 2748

Thanks Ray.

As an interim solution using the execution mode as sequential to get the count.
by xch2005
Mon Apr 26, 2010 6:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to lock sql server table?
Replies: 3
Views: 1727

How to lock sql server table?

Hi, Basically we need to insert data into sql server table with lock enable so that no sidu operation is allowed for other users. I have tried having isolation level to serializable, using hint as TABLOCKX but when the job is under execution in DataStage, I am able to select records from front end c...
by xch2005
Thu Mar 04, 2010 4:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with link count in Modify stage
Replies: 8
Views: 2748

Thanks Ray. Actually we are capturing the rowcount and the link names and display the stats on a front end. Though there are records from the link, it shows as 0 (for input & output link) in the modify stage which is incorrect. Basically we are dropping few columns and capturing the reject recor...
by xch2005
Thu Mar 04, 2010 1:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with link count in Modify stage
Replies: 8
Views: 2748

when viewed in Director (Monitor) the status for Modify stage/link shows "Unknown", is there any settings change required?

If the execution is seq. then the stauts shows as "Finished" as expected.
by xch2005
Thu Mar 04, 2010 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with link count in Modify stage
Replies: 8
Views: 2748

when viewed in Director (Monitor) the status for Modify stage/link shows "Unknown", is there any settings change required?

If the execution is seq. then the stauts shows as "Finished" as expected.
by xch2005
Fri Feb 19, 2010 5:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with link count in Modify stage
Replies: 8
Views: 2748

Issue with link count in Modify stage

Hi, The modify stage is used to format the rejects from odbc stage and capture the records in a flat file. After execution of the job, when looked at the monitor to view the no. of records in each link, the primary and output links for the modify stage shows as 0 though the records are present in bo...
by xch2005
Mon Sep 22, 2008 10:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Working with excel
Replies: 11
Views: 5024

When you have jxl.jar it is not connected viz. ODBC, directly java input stage is used in parallel job.

Thanks
by xch2005
Fri Sep 19, 2008 9:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Warnings while populating sequential files
Replies: 15
Views: 6928

Try to have the null field value=''
by xch2005
Fri Sep 19, 2008 9:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential_File
Replies: 5
Views: 3553

Also, for seq. file, input tab - field defaults - null field value can be given as=''

Thanks
by xch2005
Fri Sep 19, 2008 9:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential_File
Replies: 5
Views: 3553

Also, for seq. file, input tab - field defaults - null field value can be given as=''

Thanks
by xch2005
Fri Sep 19, 2008 9:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning faced when parallel job connects to Oracle 9i
Replies: 1
Views: 1004

Prakash, was the problem resolved. If so please let know what was done.

Thanks
by xch2005
Fri Sep 19, 2008 8:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not pass PARAMETERS to odbc stage
Replies: 3
Views: 1141

The parameters which are passed are d1 and d2 and used as shown below. select ... from ... where ... AND e.added_datetime >#d1# AND e.added_datetime < #d2# It did not work. Now I am able to run successfully, the only thing which I had missed was the quotes ie. '#d1#' and '#d2#' Craig, thanks because...
by xch2005
Fri Sep 19, 2008 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not pass PARAMETERS to odbc stage
Replies: 3
Views: 1141

Could not pass PARAMETERS to odbc stage

Hi, I need to pass data values (as parameter) to sql in the odbc enterprise stage. SQL works fine if the where clause is hardcoded with dates as, select ... from ... where ... and d1 > '20081010' and d2 < '20081020' Is it parameter cannot be passed to an odbc stage? I tried passing as parameter, the...
by xch2005
Fri Sep 19, 2008 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Working with excel
Replies: 11
Views: 5024

In addition to previous post, if I remember correclty the input excel needs to have only 1 sheet.

Thanks
by xch2005
Fri Sep 19, 2008 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Working with excel
Replies: 11
Views: 5024

Hi, To read a excel file from DataStage you can use the jxl.jar (you need to download) and the class used is ExcelRead in it in Stage -> Properties: 1. Java additional classpath - /<path>/jxl.jar 2. Transformer class name - ExcelRead 3. User's custom properties is to be as, File=<path>/<filename> Sh...