Search found 353 matches

by chandra.shekhar@tcs.com
Thu Dec 08, 2011 12:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg. Configuration File
Replies: 7
Views: 2369

Thanx Ray. You are correct, actually the file is having 12 defult nodes and 12 "DB2" nodes. Just to understand the logic I pasted only a part of the file's logic. Then according to you, 12 default nodes will be assigned to non-DB2 stages and 12 nodes fot DB2 stages, am I right? Now in this...
by chandra.shekhar@tcs.com
Wed Dec 07, 2011 11:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg. Configuration File
Replies: 7
Views: 2369

Reg. Configuration File

Hi, Can any body explain me the following code of the configuration file? And what will be the difference when "DB2" word is used ?? I am bit slow in understanding the inner logic of the file. :oops: { node "node1_1" { fastname "brhaspati" pools "" resource di...
by chandra.shekhar@tcs.com
Thu Dec 01, 2011 11:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting SYSDATE and Jobname to Oracle table
Replies: 4
Views: 1979

Since you are using a Sequential File as a source, I dont think so that you can populate sysdate and jobname except in Tfr.
by chandra.shekhar@tcs.com
Wed Nov 30, 2011 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg. DB2 Connector
Replies: 9
Views: 4127

Sorry Craig for replying late.
I checked there but still got no help.
by chandra.shekhar@tcs.com
Wed Nov 30, 2011 2:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query reg. Update records
Replies: 9
Views: 2538

I got the solution,
Sorry guys, the issue was due to incorrrect data.
by chandra.shekhar@tcs.com
Fri Nov 25, 2011 2:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg. DB2 Connector
Replies: 9
Views: 4127

I am sorry Ray, but I didnt get you.
by chandra.shekhar@tcs.com
Thu Nov 24, 2011 11:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Milli Seconds in time stamp
Replies: 4
Views: 3053

Enable Microseconds in the Extended properties.
by chandra.shekhar@tcs.com
Thu Nov 24, 2011 4:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg. DB2 Connector
Replies: 9
Views: 4127

2 Days and still no response from anyone!!!
by chandra.shekhar@tcs.com
Wed Nov 23, 2011 4:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing Duplicates
Replies: 8
Views: 4505

Use these variables in the Tfr
input.Col = svOldKey
If svOldKey = svNewKey then svCount1 = svCount1+1 else 1 = svCount1
svOldKey = svNewKey

And in the output use constraint as sv2 > 1
Thats it.
by chandra.shekhar@tcs.com
Tue Nov 22, 2011 5:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg. DB2 Connector
Replies: 9
Views: 4127

Reg. DB2 Connector

Hi,
I am using DB2 connector as my target. Before writing into the database it offers 'DB2' and 'DB2 Connector' as partitioning method. What is a DB2 connector partitioning and how it is different from DB2 partitioning?
by chandra.shekhar@tcs.com
Mon Nov 21, 2011 11:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring replacement
Replies: 7
Views: 3621

Use Convert() function in transformer
by chandra.shekhar@tcs.com
Mon Nov 21, 2011 7:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create keychange column vs create cluster keychange column
Replies: 8
Views: 17351

@chulett I have checked in the pdf and was surprised to see that both defination are almost the same. Create cluster key change column This property appears for sort type DataStage and is optional. It is set False by default. If set True it tells the Sort stage to create the column clusterKeyChange ...
by chandra.shekhar@tcs.com
Fri Nov 18, 2011 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query reg. Update records
Replies: 9
Views: 2538

@Pandeesh I am just checking the count in both source and target table. Like count(distinct primary key) in Src should be equal to count(*) in Tgt. Also in my job I am upserting my Tgt table with the latest record i.e. I can have multiple records of my PK from thr Src(no constraints in Src table) bu...