Search found 231 matches

by DS_SUPPORT
Thu May 15, 2008 12:22 am
Forum: General
Topic: Declaring constants
Replies: 3
Views: 1535

I think you can use a jobparameter for doing this.
by DS_SUPPORT
Mon May 05, 2008 10:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: check if substring in a routine
Replies: 4
Views: 2283

How about using Index Function??
by DS_SUPPORT
Mon Apr 21, 2008 9:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: routine_A used by what jobs?
Replies: 2
Views: 1970

Or the Usage Analysis from the Manager Client..
by DS_SUPPORT
Tue Apr 08, 2008 4:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Password contains unmappable characters
Replies: 2
Views: 1175

What is the DB stage you are using? In the DRS stage, we got this error , and we had applied a patch to resolve this.
by DS_SUPPORT
Tue Mar 18, 2008 4:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compare two .dsx files
Replies: 9
Views: 3568

Seems, the OP is in windows. and for windows , you are having lot of freewares, where you can compare two files.

I am using EXAMDIFF.
by DS_SUPPORT
Wed Mar 12, 2008 1:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Having Same Column name twice in target DB stage
Replies: 7
Views: 2255

Thanks for the Inputs, Marking the Thread as Resoved.
by DS_SUPPORT
Wed Mar 12, 2008 1:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Having Same Column name twice in target DB stage
Replies: 7
Views: 2255

Thanks for the inputs, Yes, "INPUT VAL" is the actual parameters passed. As mentioned earlier, i dont have any problems in writing User Defined SQL, but if possible i want to update the rows , with the generated sql (Update Existing Rows only). i have converted the Target Update action as ...
by DS_SUPPORT
Tue Mar 11, 2008 4:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Having Same Column name twice in target DB stage
Replies: 7
Views: 2255

I can mark the second nonkey column as Key , in the DRS stage, so that it will be a part of where condition, but the problem is , i cannot enter the same column names twice, that is the issue.
by DS_SUPPORT
Tue Mar 11, 2008 2:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Having Same Column name twice in target DB stage
Replies: 7
Views: 2255

Having Same Column name twice in target DB stage

I have a situation like, i want to update the target table with the values present in the Hashed file. I am having all the keycolumns of the target table present in the hashed file also. The job design is Hashfile ---> Transformer --> Target(DRS). But the issue is, I want to update a non key column ...
by DS_SUPPORT
Wed Jan 30, 2008 9:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate count
Replies: 12
Views: 4093

make sure, the input data is sorted , before applying the above said logic.
by DS_SUPPORT
Thu Jan 24, 2008 9:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Verify Migration of Datastage from Test to Prod
Replies: 3
Views: 2235

For getting the JobCount, you can use Select Count(*) FROM DS_JOBS where NAME NOT LIKE '\\%'; Select NAME FMT'50L' FROM DS_JOBS where NAME NOT LIKE '\\%'; And for routines, Select Count(*) FROM DS_ROUTINES where DSRID NOT LIKE '\\%' ; SELECT DSRID FMT'50L' FROM DS_ROUTINES WHERE DSRID NOT LIKE '\\%'...
by DS_SUPPORT
Wed Jan 23, 2008 9:02 pm
Forum: General
Topic: Gathering of DSXChange members in Bangalore
Replies: 8
Views: 2400

We are waiting for it, Let us Know the details of your next trip.
by DS_SUPPORT
Tue Jan 01, 2008 11:04 pm
Forum: General
Topic: Calling Server routines from a parallel job
Replies: 4
Views: 1714

Use the basic transformer and call the server routines there.
by DS_SUPPORT
Mon Dec 03, 2007 2:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Commit
Replies: 6
Views: 1940

What do you mean by Error in 5th record?

Is it a Lookup fail or Something which the job doesnt abort?

Try to abort the Job if you find any error, then only the Transaction Size=0 will work.

But, Wait for the experts reply.
by DS_SUPPORT
Mon Dec 03, 2007 1:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Commit
Replies: 6
Views: 1940

Try Setting the Transaction Size to 0, it means either all records will be commited, Else Nothing will be commited.

May be this wont be Suitable for Large Volume of records.