Search found 14 matches

by clickart
Thu Nov 02, 2006 1:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup or Join or Merge
Replies: 10
Views: 6102

Oh yeah. I don't know if this holds for other databases, but for DB2 if the input and lookup tables are in the same database, it's most efficient to do a join in the DB2 read (in this case an outer join), since DB2 does a better job optimizing retrieval of data from its database than DataStage does...
by clickart
Fri Oct 27, 2006 5:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to replace special characters with N in a string
Replies: 9
Views: 4617

Chulett,
I ran a test job without the commas and it worked fine. :!:
by clickart
Thu Oct 26, 2006 4:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to replace special characters with N in a string
Replies: 9
Views: 4617

Re: how to replace special characters with N in a string

You can use the Convert function in a Transformer stage. Syntax: convert('From List','To List','Expression') In From List, you can specify the list of special characters that needs to be replaced In To List, you can specify the list of new characters that will replace the special chars. In your case...
by clickart
Mon Oct 23, 2006 1:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing UserID and Password for DB connection
Replies: 10
Views: 3897

Tiozzo,
I agree with DSGuru. In our project, we too are having the authentication details in a separate file and pass it as job parameters during runtime.
by clickart
Thu Sep 07, 2006 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: look up failed
Replies: 6
Views: 2976

As Raja said, the Join stage is better than Lookup stage when volumes are high. You can still lookup on multiple tables by using a DB join in the database stage.
by clickart
Thu Aug 24, 2006 3:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to fetch any record.
Replies: 7
Views: 3158

Are you only migrating data from source to target i.e. without any lookups or joins with other tables or transformers? or any other stages?
by clickart
Thu Aug 24, 2006 2:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage server Maintainence
Replies: 24
Views: 12970

We too faced a similar issue. We were creating temporary datasets in our jobs which were not deleted and started eating up the space. You can have a UNIX script to delete such temp files or datasets and put it as the last stage in your sequencer in an Execute command stage. This way you can ensure t...
by clickart
Tue Aug 08, 2006 11:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2UDBEnterprise Load against DB2 without DPF?
Replies: 3
Views: 2822

You can check if the data to be loaded is sorted on the index keys of the table.
by clickart
Tue Aug 08, 2006 10:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find the last 10runs time of a job
Replies: 5
Views: 2587

Can you give the full path of the Etlstats folder?
by clickart
Mon Aug 07, 2006 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Agg,1: Hash table has grown to 16384 entries.
Replies: 9
Views: 35751

You can use a SORT stage before the AGGR stage to sort the data and the partitioning must be on the same fields as the grouping keys in the AGGR stage.
by clickart
Mon Aug 07, 2006 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2UDBEnterprise Load against DB2 without DPF?
Replies: 3
Views: 2822

Re: DB2UDBEnterprise Load against DB2 without DPF?

You could run through the following checks, 1 - Is your target database partitioned? If not, DB2EE stage may not work correctly as it will not be able to load data parallely. You should be using a DB2 API stage 2 - If your target database is partitioned, check if the partitioning type in DB2EE stage...
by clickart
Thu Aug 03, 2006 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborting when running with large data sets
Replies: 7
Views: 3188

I'm sorry. Since we had encountered this issue several months back, I couldnt recollect it correctly earlier. The time-out value was actually set in DS Administrator. The "inactivity timeout" value was initially set low which caused the UNIX process to abort. However the DataStage job was ...
by clickart
Wed Aug 02, 2006 4:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborting when running with large data sets
Replies: 7
Views: 3188

This looks like a UNIX process time-out error. We used to get a similar error when the DataStage job continues running more than the time-out limit set in UNIX.