Search found 89 matches

by girija
Thu Mar 05, 2009 10:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: comparing two timestamps field
Replies: 2
Views: 1064

It is comparing to timestamp field, why do you concern about the length?
Its OK to compare two timestamp.
by girija
Wed Mar 04, 2009 10:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Main sequence getting aborted
Replies: 23
Views: 10357

Since your jobs are attached with jobcontrol process, it might cause the problem. We have a similar jobcontrol process and it won't allow a single warning. So if any job in the sequence get a single warning, job finished but sequence aborted due to the job warning.
by girija
Wed Mar 04, 2009 10:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Main sequence getting aborted
Replies: 23
Views: 10357

As you mentioned, your Job status as "Finished (see log)" , means you have some warning in your job. Sequence might be aborted because of that, since the previous job not finished "OK". Please check this too.
by girija
Wed Feb 25, 2009 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data getting added in CDC stage
Replies: 11
Views: 3129

Just to check.

Take only one record to test and send it PEEK stage and compare each and every column. You might get a clue from that.

Best of luck.
by girija
Wed Feb 25, 2009 1:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data getting added in CDC stage
Replies: 11
Views: 3129

1. Check whether you have same number of columns in your before and after link. 2. Verify the key column and change columns, and see whether you add any surrogate or generated column in your before and after column list or not. 3. Check whether you are doing any kind of transformation before loading...
by girija
Wed Feb 25, 2009 1:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data getting added in CDC stage
Replies: 11
Views: 3129

1. Check whether you have same number of columns in your before and after link. 2. Verify the key column and change columns, and see whether you add any surrogate or generated column in your before and after column list or not. 3. Check whether you are doing any kind of transformation before loading...
by girija
Wed Feb 25, 2009 1:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data getting added in CDC stage
Replies: 11
Views: 3129

1. Check whether you have same number of columns in your before and after link.

2. Verify the key column and change columns, and see whether you add any surrogate or generated column in your before and after column list or not.
by girija
Wed Feb 25, 2009 12:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning Message: Cannot preserve partitioning
Replies: 8
Views: 11272

Select option "Clear" in "Preserver Partitioning" of your transformer output link.
by girija
Wed Feb 25, 2009 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error - Dropping component "sqlcode" because of a
Replies: 4
Views: 2828

Do you have separate file for two link?
Check RCP check box in your job.
by girija
Wed Feb 25, 2009 10:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strip Chars at the end and not in middle
Replies: 9
Views: 4643

Use LEFT fiunction if you want to strip last three (fixed) character from your input value.
by girija
Wed Feb 25, 2009 9:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strip Chars at the end and not in middle
Replies: 9
Views: 4643

Use LEFT fiunction if you want to strip last three (fixed) character from your input value.
by girija
Tue Feb 17, 2009 10:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: regarding spliting the records
Replies: 14
Views: 3825

Could you please tell us detail about your requirement? If you are selecting only one column from DB2 and try to get the result as you shown then CONVERT can do this. Use Convert function and write into another seqfile, and read the same file in the next job. But if you are selecting multiple column...
by girija
Mon Feb 16, 2009 10:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-00911 error
Replies: 17
Views: 7172

Hi,
Open your source file in a file editor that can handle ASCII as well as NON_ASCII character, let see whether there is any invalid character there or not. It may be a non printable character, not shown in your log from PEEK or from other stage.
by girija
Mon Feb 16, 2009 10:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion from source type "decimal[38,10]&qu
Replies: 3
Views: 3403

Hi, Why are you using default decimal[38,10] in your input, sincne you know that the value should be within the range of NUMBER(5)? Probably you are using some oracle function when you select this from the source. Use CAST utility of oracle and get the value as NUMBER(5) instead of [38,10].
by girija
Thu Jan 29, 2009 3:01 pm
Forum: General
Topic: Mask Passwords with ** a field?
Replies: 6
Views: 2604

You can't do it. You need to scrambled password value and write into a file. Un-scramble < Cat the file and used password inside your script.
You can use PERL scripte for this.