Search found 200 matches

by times29
Mon Nov 05, 2012 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogated key generator warning how to get rid off
Replies: 4
Views: 1683

Thats what i did SK column bigint then transformer bigint still warning
by times29
Mon Nov 05, 2012 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogated key generator warning how to get rid off
Replies: 4
Views: 1683

Surrogated key generator warning how to get rid off

Hi,
I am using Surrogated key generator as in oracle the datatype is number(8,0) . i am getting below warning so how can i fix this in SK generator without changing datatype in oracle?

conversion from source type "uint64" to result type "int32

Thanks
by times29
Mon Nov 05, 2012 1:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CDC not doing insert
Replies: 2
Views: 1311

CDC not doing insert

Hi, I am doing CDC somehow rows are not getting insert i am USING CDC stage then filter and based upon change_code = 1 insert and based upon change_code =3 update I think my insert mode in oracle connector is not write : i am doing Insert with table action append and same for update with table actio...
by times29
Fri Nov 02, 2012 10:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with logic
Replies: 6
Views: 1844

Right in some cases it don't so how to proceed then
by times29
Fri Nov 02, 2012 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with logic
Replies: 6
Views: 1844

Should not IsNull(to_transf4.COST_CNTR_TCD) take care of NULL
by times29
Fri Nov 02, 2012 9:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with logic
Replies: 6
Views: 1844

Issue with logic

Hi, i am getting below results while doing IF TRIM(((to_transf4.ORDER_TCD[1,1]) <>'S' AND trim(to_transf4.ORDER_TCD<>'')) and (TRIM(to_transf4.COST_CNTR_TCD='') or IsNull(to_transf4.COST_CNTR_TCD))) then 'Y' ELSE 'N' Peek_186,0: COST_CNTR_TCD:NULL POST_STAT:N DOC_NUM:5001307000 LINE_ITEM: 001. ORDER...
by times29
Mon Oct 22, 2012 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: if then else logic not working
Replies: 4
Views: 2379

i am getting same output like input so no transformation is done
by times29
Mon Oct 22, 2012 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: if then else logic not working
Replies: 4
Views: 2379

if then else logic not working

Hi, I have data coming like ORDER_TCD COST_CNTR_TCD NETWORK_TCD S83010 11111 600009 33333 700006 22222 AAAAAA After transformation i want it to look like ORDER_TCD COST_CNTR_TCD NETWORK_TCD S83010 11111 600009 700006 22222 AAAAAA So basic idea is if ORDER_TCD starts with prefix S or network_tcd is n...
by times29
Fri Oct 19, 2012 2:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter stage not removing nulls
Replies: 4
Views: 3918

i did try payr_vblnr is not null or payr_vblnr <>' ' but same result
by times29
Fri Oct 19, 2012 1:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter stage not removing nulls
Replies: 4
Views: 3918

Filter stage not removing nulls

Hi, i am doing this in filter stage payr_vblnr is not null and i am still getting nulls and i am doing trim in transformer as i can't do trim in filter stage But when i run sql in oracle doing where trim(payr_vblnr) is not null it works gives me desire result I did try putting constraint in transfor...
by times29
Fri Oct 12, 2012 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: substring a column
Replies: 7
Views: 2132

Thats ok take it easy no comments work will never stop even if you reply or not :)
by times29
Fri Oct 12, 2012 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: substring a column
Replies: 7
Views: 2132

Sometime it is better not to reply if you don't like post.
by times29
Fri Oct 12, 2012 1:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: substring a column
Replies: 7
Views: 2132

substring a column

Hi,
How can i do this extract character 11 to 16 to get col1 and then extract from character 17 to end to get col2

Example

Source

COL1
KL10000000112111205-OT
Target
col1 col2
112111 205-OT
by times29
Sat Oct 06, 2012 4:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: left outer join and where caluse
Replies: 6
Views: 4657

Yes transformer did get three rows in which is good but after transformer
constraint rows_out are zero

i want to see two below rows out of transformer

105 500 506
105 101 201
by times29
Fri Oct 05, 2012 8:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: left outer join and where caluse
Replies: 6
Views: 4657

left outer join and where caluse

Hi, I have table a table b col1 col2 col col1 b_col2 b_col3 105 500 507 105 500 507 105 500 506 105 101 201 Target result should be col1 col2 col3 105 500 506 105 101 201 i joined two table using join stage did left outer join from table a to table b on col1 then in transformer i put a constraint co...