Search found 85 matches

by Magesh_bala
Thu Feb 14, 2013 8:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job reports failure
Replies: 3
Views: 2067

I got only this error message, Just after initializing the Job.

Log:

main_program: Dump:
After the above statement I got the error.
by Magesh_bala
Thu Feb 14, 2013 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job reports failure
Replies: 3
Views: 2067

Parallel job reports failure

Hi All,
I'm getting the below error message in Datastage 8.5.

"Parallel job reports failure "

I tried compiling, force compiling, re-Importing.dsx, renaming the Job. No luck can you please help?
by Magesh_bala
Fri Sep 14, 2012 1:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BULK Access Method to Read data uisng Teradata connector
Replies: 3
Views: 4010

My output metadata matches with Table structure...When I use the Option Immediate it work's fine...
by Magesh_bala
Fri Sep 14, 2012 12:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BULK Access Method to Read data uisng Teradata connector
Replies: 3
Views: 4010

BULK Access Method to Read data uisng Teradata connector

Hi All,

I'm trying to use "BULK" Access method in Teradata connector To read huge volume of data...I'm getting the below error message...

Error:
Properties /Usage/AccessMethod, /Connection/ClientCharacterSet: Incompatible property values[Output link 0]

Can you please help....
by Magesh_bala
Thu Jun 21, 2012 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Order the records based on Date Value
Replies: 11
Views: 5478

I got the Logic to fix the issue...

PrevVal CurrVal
CurrVal 123:456

PrevAct CurrAct
CurrAct If Currval=PrevVal Then PrevAct Else PrevAct+1


Thanks Craig...
by Magesh_bala
Thu Jun 21, 2012 8:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Order the records based on Date Value
Replies: 11
Views: 5478

So We need to get the
0
1
1
Using the transformer stage by comparing the prev and Curr record and then do the Looping?

yes I have Datastage 8.5 Version...
by Magesh_bala
Thu Jun 21, 2012 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Order the records based on Date Value
Replies: 11
Views: 5478

Hi Criag, Please find the output from Aggregator Stage... ITM_INST Start Ts PTY_ID End Ts 123 1/1/2008 456 12/31/9999 123 1/1/2011 567 12/31/2011 When I group by ITM_INST and PTY_ID first 3 records and last records is considered as one group and 4th records as separate record.... I have overlap...
by Magesh_bala
Thu Jun 21, 2012 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Order the records based on Date Value
Replies: 11
Views: 5478

Thanks Craig... First I tried with Aggregator Stage using Min(Start date) and max(end date) But it doesn't return correct values... I have a over lap Second option using Stage Variable in Transformer by comparing prev row and current row I have rows 0 1 1 0 0 I'm not sure how to to split the records...
by Magesh_bala
Thu Jun 21, 2012 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Order the records based on Date Value
Replies: 11
Views: 5478

Order the records based on Date Value

Hi All, I have a scenario where I need to group the records based on the Order... Input Records ITM_INST Start Ts PTY_ID End Ts 123 1/1/2008 456 12/31/2008 123 1/1/2009 456 12/31/2009 123 1/1/2010 456 12/31/2010 123 1/1/2011 567 12/31/2011 123 1/1/2012 456 12/31/9999 In the above Input records I nee...
by Magesh_bala
Tue May 29, 2012 2:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Update Table
Replies: 1
Views: 1778

Teradata Update Table

Hi All,

Can I use the Datastage parallel Job to Select teradata rows from Table A and update the Same table column in one single Job?

I will be sorting and update the end timestamp based on previous rows in the Job.

I have millions of rows in the Table... Please let me know your thoughts. Thx.
by Magesh_bala
Fri Dec 16, 2011 10:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Zero Rows from a String COlumn
Replies: 6
Views: 3726

Remove Zero Rows from a String COlumn

Hi All, I have a scenario where I need to replaces all the rows with Zero into Single space... Invalid Rows Eg: 0 00 000 0000 The column is defined as Varchar(20) so it can have any combination of Zero values starting from 1 to 20 zeros I need to remove all the rows where it has Zero's as defined ab...
by Magesh_bala
Thu Sep 29, 2011 10:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NUL Values
Replies: 7
Views: 4799

What is the Best way to handle NUL from the Source?
by Magesh_bala
Wed Sep 28, 2011 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NUL Values
Replies: 7
Views: 4799

Below convert function helped me to avoid the NUL values.

Convert(Convert(' ABCDEFGHIJKLMNOPQRSTUVWXZYabcdefghijklmnopqrstuvwxyz0123456789','', Trim(colname)),'', Trim(colname))
by Magesh_bala
Sun Sep 25, 2011 9:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NUL Values
Replies: 7
Views: 4799

When I open the file in Notepad++ one of the column show as

Kumar[NUL][NUL]
Bala[NUL][NUL]

It looks like ASCII characters, I tried filter option in sequential file

tr -c '\0\ '' But it didnt work