Search found 8 matches

by josejohny
Wed Jun 06, 2012 1:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer with Long constraint stays in running state
Replies: 4
Views: 4559

Hi, Job is giving below warning and Fatal error"xxx_Tfm,1: sh: dbx: not found". xxx_Tfm,0: Operator terminated abnormally: received signal SIGSEGV But job is still in running condition. Sorry,the issue is not with long constraint. As suggested I tried to use stage variable for trimming rig...
by josejohny
Thu May 10, 2012 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer with Long constraint stays in running state
Replies: 4
Views: 4559

Hi, Below is the sample transformer constraint which is stays running state in datastage 8.5. ((PARAMETER1='EOD' or PARAMETER1='ME') And RIGHT(IN_LINK.COLUMN1,3)='EOD' ) OR (PARAMETER1='SOD' And RIGHT(IN_LINK.COLUMN1,3)='SOD') OR ((PARAMETER1='ID1' or PARAMETER1='ID2') And RIGHT(IN_LINK.COLUMN1,3)<>...
by josejohny
Fri Jan 20, 2012 10:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Diff results in each run
Replies: 5
Views: 3288

In Screen shot , RMVDUP_UP_HIER stage (Remove duplicate stage) has different out put. So check the partition in remove duplicate stage.
by josejohny
Fri Jan 20, 2012 10:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trouble with StringToDate
Replies: 10
Views: 5407

Check it out. If Trim(NullToEmpty(Ln_in.col_2))<>"" Then StringToDate(Ln_in.col_2,"%yyyy%mm%dd") else SetNull() .Simple..
by josejohny
Fri Jan 20, 2012 10:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage- java pack
Replies: 3
Views: 4401

Re: datastage - javapack

Add jar file into /<server>/etl/InformationServer/Server/DSEngine/java/lib/tr4j.jar class path.

Thanks
Jose
by josejohny
Fri Jan 06, 2012 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question on Partitioning before join stage
Replies: 8
Views: 5136

What I used to do is Hash partitioning on Sort stage and same partitioning on join stage input links. Partitioning key you can give same as joining key. So you will get matching data in one partition.
by josejohny
Tue Apr 19, 2011 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join Stage adding unidentified characters to output
Replies: 5
Views: 3771

Re: Join Stage adding unidentified characters to output

Outer join link data column can be given as nullable "Yes" then in downstream stages null can be identified by isnull() or Trim(NullToEmpty(Column name))<>"" functions.
by josejohny
Wed Feb 10, 2010 11:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to abort datastage job for sybase deadlock issue?
Replies: 7
Views: 8733

How to abort datastage job for sybase deadlock issue?

Hi, For below deadlock situation datastage job not got aborted but it send a warning only. sybase stage is using and treat error as non fatal check box in output->SQL->before and after is ticked. Is it due to this job not aborted. Or Some setting problem in DB. How to make datastage job abort in thi...