Search found 89 matches

by girija
Tue Mar 10, 2009 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incrementing values in datastage going wrong
Replies: 13
Views: 12205

Thanks Craig.

Sajid,

Did you implement what we are suggesting?

Please let us know. It is working fine in my PX environment.
by girija
Tue Mar 10, 2009 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incrementing values in datastage going wrong
Replies: 13
Views: 12205

Still... regardless, for this technique to have any chance of working when you compare current and previous values, you need to set the 'previous' value last or they'll always be the same . ... Hi Craig, Please let me know if I am wrong. As I know all stage variables and derivation execute one afte...
by girija
Tue Mar 10, 2009 7:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incrementing values in datastage going wrong
Replies: 13
Views: 12205

Try this : if link.key <> stgOldKey THEN 1 ELSE stgCount + 1 ===> stgCount link.key ===> stgOldKey 1. Partition and order input link by key. 2. Keep the order when you defined the stage variable. 3. stgCount as Number and stgOldKey as Varchar/Number ( based on your input field type)
by girija
Tue Mar 10, 2009 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Table Error
Replies: 9
Views: 2973

Try to connect oracle from your unix box using that connect string. If failed, talk to DBA otherwise talk to your DS admin.
by girija
Thu Mar 05, 2009 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teredata mload: No such file or directory error
Replies: 3
Views: 1712

Click on input tab of TD stage. And click on MultiLoad/TPump sub-tab.
by girija
Thu Mar 05, 2009 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Job activity stages in sequencer
Replies: 5
Views: 2535

Create two sequence one contain only Job and another contain your script.
Run them separately and let see.
by girija
Thu Mar 05, 2009 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit Interval in Oracle Enterprise Stage
Replies: 2
Views: 998

APT_ORAUPSERT_COMMIT_ROW_INTERVAL
by girija
Thu Mar 05, 2009 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage requires sorted input?
Replies: 16
Views: 8409

If you are not specifying SORT order it will effect the performance not the result. But if you not define partition it will effect the result.
by girija
Thu Mar 05, 2009 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Field Limitation
Replies: 5
Views: 3055

Hi,
Could you please add a reject link to your transformer1 and try to compile. I read it in a forum ( don't know the proper reason), it resolved their issue of compilation. Just try it and let us know.
by girija
Thu Mar 05, 2009 12:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: oracle sequence resued for processing error
Replies: 6
Views: 1247

According to your output from command it is like "000000100.". Set SeqFile--->Format : Quote as none.
by girija
Thu Mar 05, 2009 12:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: oracle sequence resued for processing error
Replies: 6
Views: 1247

Try with bigint and let us know.
by girija
Thu Mar 05, 2009 11:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UnBalance partition
Replies: 7
Views: 3818

Add environment variable : APT_DISABLE_COMBINATION and set it value to true. Compile your job and run again.
by girija
Thu Mar 05, 2009 11:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: oracle sequence resued for processing error
Replies: 6
Views: 1247

When you stored seq number in the sequential file use data type as BigInt instead of decimal.
by girija
Thu Mar 05, 2009 11:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage requires sorted input?
Replies: 16
Views: 8409

But if we are not specfying partition and sort in the input link, it all depends on these two environment variable : APT_NO_SORT_INSERTION
and APT_NO_PART_INSERTION. Means project dependent code. I think it is better to say "Input data must be partitioned and sorted" for join stage.