Search found 141 matches

by scorpion
Wed Sep 12, 2007 12:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture Warnings in Log
Replies: 6
Views: 2149

I am using the same value...
by scorpion
Wed Sep 12, 2007 12:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture Warnings in Log
Replies: 6
Views: 2149

Hi Thanks for the reply,
Below are the details


To figure out the exact problem we need additional info..
1) How many columns do you have?

50 Columns

2) What are the key columns and value columns?
only one is the key column and i mentioned

changemode = explicit keys and values
by scorpion
Wed Sep 12, 2007 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture Warnings in Log
Replies: 6
Views: 2149

Change Capture Warnings in Log

Hi All, I am using ChangeCapture stage to compare 2 datsets in my job. I am getting below warning message: Change_Capture_8: When checking operator: Defaulting "ACRL_MTHD" in transfer from "beforeRec" to "outputRec". How to over come with this warnings? I am getting thi...
by scorpion
Mon Sep 10, 2007 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date format
Replies: 2
Views: 1438

Hi JoshGeorge,

Thanks for the reply,I rewrite the code as below and it is working fine now..

DateToString(StringToDate(Left( from_funnel.EFCTE_CLCLD_DTTM, 8), "%yyyy%mm%dd"), "%yyyy-%mm-%dd")
by scorpion
Mon Sep 10, 2007 5:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date format
Replies: 2
Views: 1438

Date format

Hi All, I used below code to populate in one of my target field as below format. CCCC-MM-DD HH:MM:SS. code is: TimestampToString(StringToTimestamp(from_funnel.EFCTE_CLCLD_DTTM, "%yyyy%mm%dd %hh:%nn"), "%yyyy-%mm-%dd %hh:%nn:%ss") but now my requirement is to poulate only 'CCCC-MM...
by scorpion
Thu Sep 06, 2007 8:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer derivation
Replies: 6
Views: 2244

Hi,

Will Left function work in my scenario(means for integer type)?
Left((inputcolumn), 3)="700" or
Left((inputcolumn), 3)="701"
by scorpion
Thu Sep 06, 2007 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer derivation
Replies: 6
Views: 2244

Hi Maveric Thanks for the reply,

It is very usefull forme,if you help me by giving exact derivation to me.
by scorpion
Thu Sep 06, 2007 7:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer derivation
Replies: 6
Views: 2244

Transformer derivation

Hi All, I need to write some derivation in my transformer like below: if sourcecolumn1= 300 or 300% then populate 'xx'else blank. my intension is, if the values are in source like 300 or 30045 or 30076 or 30088etc,whatever starts with 300 i need to populate as 'XX'. SO below logic will work IF sourc...
by scorpion
Mon Sep 03, 2007 7:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: if then else
Replies: 11
Views: 24837

Thanks for your reply chullet, Othere than that if TARCOL2(second source column) also null then populate TARGETCOL with TARCOL3(3rd source column).. so to populate TARGETCOL: if the value of the ColumnA = 'dsx' then map TARCOL1, Else map TARCOL2.if this column value(TARCOL2) is null then mapTARCOL3....
by scorpion
Mon Sep 03, 2007 7:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 2else statements
Replies: 5
Views: 2002

Sure and I mentioned clearly now about my reqrmnt in my original post..

thanks
by scorpion
Mon Sep 03, 2007 7:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: if then else
Replies: 11
Views: 24837

Hi Chullet,

ColumnA,TARCOL1,TARCOL2 & TARCOL3 are my source columns:

And i have to populate one my target column(TARGETCOL) like below:

if the value of the ColumnA = 'dsx' then map TARCOL1,Else map TARCOL2.if this column values is also null then populate TARCOL3.
by scorpion
Mon Sep 03, 2007 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 2else statements
Replies: 5
Views: 2002

Hi Chullet,

Thanks for the reply,

And my reqrment is like:

if the value of the ColumnA = 'dsx' then populate TARCOL1,Else populate TARCOL2.if this column values is also null then populate TARCOL3.
by scorpion
Mon Sep 03, 2007 7:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 2else statements
Replies: 5
Views: 2002

2else statements

Hi All,

Can any one explain,How to use 2 else statements in if-then-else statements in transformer stage.

reqrmnt is:

if columnA='DSX' then populate col1,else col2,else col3.

can any one please help me on this..
by scorpion
Mon Sep 03, 2007 5:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: if then else
Replies: 11
Views: 24837

can any one helpme on this please?
by scorpion
Mon Sep 03, 2007 4:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: if then else
Replies: 11
Views: 24837

Hi ,

values are in my columns are varchar type.So some are the values are nulls.

rqrmnt:

if the value of the ColumnA = 'dsx' then populate TARCOL1,if this value is null THEN populate TARCOL2.if this column values is also null then populate TARCOL3.