Search found 73 matches

by pkll
Sun May 25, 2014 11:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convertion of 60 digit Alpha Numeric to 40 digit?
Replies: 9
Views: 3398

Convertion of 60 digit Alpha Numeric to 40 digit?

Hi,

How to convert 60 digit Alpha Numeric value to 40 digit?

My Source is 60 digit Alpha Numeric value but my target has 40 digit alpha numeric. How to convert 60 to 40 digit Alpha numeric value??
by pkll
Thu Apr 03, 2014 4:25 am
Forum: General
Topic: Datastage Server Routine for LINKCOUNT?
Replies: 2
Views: 1464

Hi Ray,

I am not a Premium Member(shortly I will be a premium member).I am not able to see entire message. Can you please copy the routine.
by pkll
Thu Apr 03, 2014 4:03 am
Forum: General
Topic: Datastage Server Routine for LINKCOUNT?
Replies: 2
Views: 1464

Datastage Server Routine for LINKCOUNT?

I am trying to execute the below data stage server routine to get the link count of the source and target but I am getting warning-7 please let me know if i miss any thing in the below routine $INCLUDE DSINCLUDE JOBCONTROL.H JobHandle = DSJ.ME JB_HANDLE = DSAttachJob("jobName",DSJ.ERRWARN)...
by pkll
Wed Apr 02, 2014 12:19 am
Forum: General
Topic: Operating Control Table?
Replies: 1
Views: 1047

Operating Control Table?

masterControl table .Below are the fileds of the table MasterProcess Identifier Process Start timestamp Process End timestamp Process Control Status Code Valuation date Fixed variable indicator Lastupdate time stamp Please let me know how to update the control table fields . I need to capture each t...
by pkll
Wed Mar 12, 2014 1:19 am
Forum: General
Topic: Left Outer Join More than One column?
Replies: 2
Views: 1220

Left Outer Join More than One column?

Hi All, Please let me know whether this left outer join is correct? If correct will it effect the performance because I am using join with more than one columns. both tables are in database so can I use the SQL join or data stage join. left table contain millions of records. SELECT a.contractno, b.p...
by pkll
Mon Mar 03, 2014 5:30 am
Forum: General
Topic: How to Load Audit Table?
Replies: 3
Views: 1483

How to Load Audit Table?

Hi All,

How to populate the Audit table in data stage. Is there any Routine for that .Each time When the record is rejected I need to increment the count in the audit table along with this i need to calculate Amounts and load into Audit tables?
by pkll
Fri Feb 28, 2014 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CheckSum Stage in datastage
Replies: 13
Views: 10115

Re: checksum

We suggested to client changecapture stage.But client are interested on checksum stage...
by pkll
Fri Feb 28, 2014 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CheckSum Stage in datastage
Replies: 13
Views: 10115

Re: checksum

Hi Ray, I need to use checksum stage only. Below is my example Input ------ e_id,e_name,e_Add 11,kim,bris 22,jim,mel 33,pim,syd 44,lim,canb 55,pom,pth Output Before_Loading ----------- e_id,e_name,e_add 11,kim,syd 22,jim,canb 33,pim,syd 44,lim,canb 55,pom,pth Out After_Loading ----------- e_id,e_nam...
by pkll
Fri Feb 28, 2014 5:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CheckSum Stage in datastage
Replies: 13
Views: 10115

checksum

Please let me know how to use the checksum stage.my requirement is to compare the source and target and if any new record found or any value updated then load the data into the target table.
by pkll
Fri Feb 28, 2014 3:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CheckSum Stage in datastage
Replies: 13
Views: 10115

Hi Prasoon,


I need to load the target table with only the new records I mean incremental load.I don't want to load every time the same records from source to target.If the new record or any updated record I need to load.Please let me know how to use the checksum stage
by pkll
Fri Feb 28, 2014 2:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CheckSum Stage in datastage
Replies: 13
Views: 10115

CheckSum Stage in datastage

My Source is file and target is table.I need to compare a table records with records in a file to see if any field has changed. I am not sure if I should calculate the checksum then do the comparison. Please let me know how to use check sum stage.
Thank you in advance.
by pkll
Sat Jan 18, 2014 11:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date field column loading into Oracle Database?
Replies: 4
Views: 1176

Hi Chulett,

My source data types are varchar and target is two fields. my first datatype will be timestamp and second will be varchar and no space between
month and year...
by pkll
Sat Jan 18, 2014 9:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date field column loading into Oracle Database?
Replies: 4
Views: 1176

Date field column loading into Oracle Database?

Hi All, I have input is Date,Time_Posted ------------------ 8th November2013,12.30 midnight 21th July2013,8.30pm 13th December2013,8.00pm 9th May2013,12.30 midnight 11th April2013,12.30 midnight. I want output as ----------------------- Date,Time_Posted 8-11-2013,12.30 midnight 21-07-2013,8.30pm 13-...
by pkll
Tue Dec 03, 2013 12:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Scenario?
Replies: 5
Views: 2955

Datastage Scenario?

Hi,

I have source is

sno,sname
1,x
1,y
2,y
2,z
3,z

I want target is

sno,sname
1,z
2,x
3,x
3,y

Could you please explain me?