Search found 3329 matches

by Sainath.Srinivasan
Wed Jul 29, 2009 5:45 am
Forum: General
Topic: Compare two Datastage jobs
Replies: 13
Views: 18944

For v7,

Take export and do a diff.
by Sainath.Srinivasan
Wed Jul 29, 2009 2:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update sql performance slow
Replies: 11
Views: 3271

Even though Ray's point is valid for updates, the significant difference in update performance compared to its Server counterpart indicates issue in the design. Check whether there are any duplicate keys in the data which is causing locks in the target update. Also check whether the target has paral...
by Sainath.Srinivasan
Wed Jul 29, 2009 2:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration File
Replies: 3
Views: 1149

Configuration file depends on your hardware. So different installations must have different configuration.
by Sainath.Srinivasan
Wed Jul 29, 2009 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row count not matching between DS and toad
Replies: 3
Views: 1145

Download both results in a sequential file and do a diff.

Check whether there are null values in non-nullable fields.
by Sainath.Srinivasan
Wed Jul 29, 2009 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Loader Control File Truncated
Replies: 10
Views: 2771

Gavin,

There is another similar post with information about the patch. Please search.
by Sainath.Srinivasan
Wed Jul 29, 2009 1:37 am
Forum: General
Topic: Sending Email through after job subroutine on Windows pf
Replies: 3
Views: 2016

Why not use the notification activity ?
by Sainath.Srinivasan
Tue Jul 28, 2009 2:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update sql performance slow
Replies: 11
Views: 3271

Did you try an explain plan ?

How many of the total rows in the target will be updated in one run ?
by Sainath.Srinivasan
Tue Jul 28, 2009 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Index Function
Replies: 4
Views: 4841

You can achieve it in various ways.

One of them is via Matches as Craig has noted.

Sample

Code: Select all

If yourField Matches "0X'ABC'0X'XYZ'0X" Then .... Else ...
by Sainath.Srinivasan
Tue Jul 28, 2009 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: inset or update
Replies: 3
Views: 1778

If the target is any dbms, you can set the values in the backend.

This can be done using a trigger.

You can create an 'on update' trigger which does

:new.col5 := :old.col5;
:new.col6 := :old.col6;

There are many other ways to handle this.
by Sainath.Srinivasan
Tue Jul 28, 2009 6:57 am
Forum: General
Topic: "OR" in a join
Replies: 7
Views: 2516

What is the source ?

What is the data volume ?
by Sainath.Srinivasan
Tue Jul 28, 2009 2:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Save as csv in a cross tab format
Replies: 3
Views: 792

That appears to be the job of a reporting tool and not an ETL tool like datastage.

You can do that in Excel itself.
by Sainath.Srinivasan
Tue Jul 28, 2009 2:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Node Number clause in SQL queries
Replies: 10
Views: 6597

DB2 nodes or DataStage nodes?
by Sainath.Srinivasan
Tue Jul 28, 2009 2:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading from failure record
Replies: 2
Views: 888

You can achieve this in several ways, but all depends on how the load works. If you current load is direct into target, you can do this. But if it computes on the fly, you may have to work around that. If you can identify the last successful rows, you can add a 'id > targetID' in your source where c...
by Sainath.Srinivasan
Tue Jul 28, 2009 2:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Save as csv in a cross tab format
Replies: 3
Views: 792

Your requirement appears bit unclear to me.

If that is what you expect, you can send the columns in 3 seperate link, sort and write to individual sequential files with record delimiter as blank for first 2.

In the after job stage you can cat them together.