Search found 357 matches

by richdhan
Fri Apr 22, 2005 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Exporting Warning
Replies: 2
Views: 1258

Hi,

Look into this post. That should solve your problem.

HTH
Rich
by richdhan
Fri Apr 22, 2005 2:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple instance jobs
Replies: 9
Views: 1707

Hi Dsnew,

Multiple Instance jobs are jobs which can be run at the same instance using different invocation id's. It has no relationship with sequencer.

HTH
Rich
by richdhan
Mon Apr 18, 2005 1:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating config for accessing Teradata
Replies: 11
Views: 12699

Hi bcarlson,

I have both Orchestrate 6.1 Operators Reference and Orchestrate 7.0 Operators Reference. In both of the guides it is the last chapter named "The Teradata Interface Library" in which you can find this information.

Both these pdf's have references to teraread operator.

HTH
Rich
by richdhan
Wed Apr 13, 2005 1:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with join stage
Replies: 2
Views: 1675

Hi Bilwakunj, My first thought is that there might be a problem with the partitioning. Yes you should use hash partitioning on keys for both the input links to the join stage. Check whether the order of keys in the hash partition is same in both the input links. My suggestion is that you run the job...
by richdhan
Wed Apr 13, 2005 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Does Partioning and Parallel Processing go hand in hand
Replies: 3
Views: 2151

Hi Sriram,

Pls go through Chapter 2 of parallel job developers guide. Also search the forum. It has been discussed so many times.

Rich
by richdhan
Fri Apr 08, 2005 12:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Notification Activity
Replies: 6
Views: 1642

Hi Naren, Write a small routine to get the row count into the sequential file. Do a search on this forum and you would get the routine. Result = DSGetLinkInfo (JobHandle, StageName, LinkName,DSJ.LINKROWCOUNT) Use a routine activity in the sequencer to run this routine. Based on the trigerring condit...
by richdhan
Fri Apr 08, 2005 12:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: null export handling
Replies: 9
Views: 7630

Hi Amitava, Using the NVL function in oracle will not resolve the warning. The record will not be discarded but the warning will still persist. The best way to handle this situation is using the Null handling feauture available in Field properties of sequential file stage as described by Eric and Ra...
by richdhan
Thu Apr 07, 2005 5:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Find out job name
Replies: 5
Views: 1834

Hi Vikas, I have used the following query in Datastage Administrator command window and it works perfectly. SELECT DS_JOBS.NAME, DS_JOBS.CATEGORY, DS_ROUTINES.DSRID FROM DS_JOBS, DS_ROUTINES WHERE DS_JOBS.JOBTYPEIND=DS_ROUTINES.JOBTYPEIND AND DS_ROUTINES.DSRID='TestRoutine'; Have you selected the co...
by richdhan
Thu Apr 07, 2005 2:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Conversion
Replies: 4
Views: 2336

Hi Bilwakunj, Before we go ahead I need some info 1. What is the error message you are getting when the job got aborted? 2. How do you confirm that it is because of StringToDate function used in the Transformer? We have used char(10) columns from input and have coverted them into Date using the Stri...
by richdhan
Thu Mar 31, 2005 1:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings in join stage
Replies: 5
Views: 3582

Hi T42,
T42 wrote:If it's a remove duplicate, you need one extra sort field beyond the keys.
Can you explain why this is so in the case of Remove Duplicates Stage and not in the case of Aggregator?

TIA
Rich
by richdhan
Mon Mar 21, 2005 12:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Access to sys.dba_extents required but not available.
Replies: 7
Views: 5529

Hi,

We had a similar problem when we started working using oracle enterprise stage. Hope this link helps.

Rich
by richdhan
Fri Mar 11, 2005 1:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete table before loading
Replies: 15
Views: 6942

Hi,

You can delete the Universe table(Hash file) using DELETE.FILE command.

HTH
Rich
by richdhan
Fri Mar 11, 2005 1:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deletion of DataSet Pointers
Replies: 3
Views: 1536

Hi Pavan, A dataset is a collection of data files and a contol file with .ds extension. If you use the rm command you remove only the control file and not the data files. Use 'orchadmin delete' command which deletes both the control file as well as the data files. Delete the intermediate datasets in...
by richdhan
Thu Mar 10, 2005 1:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between DataSet and FileSet
Replies: 2
Views: 1808

Hi, Look into these links it will give you some information. http://www.dsxchange.com/viewtopic.php?t=91381 http://www.dsxchange.com/viewtopic.php?t=91509 Develop a test job using row generator to load data into a dataset and a fileset and try to work on them. You will get more info. Just think of f...
by richdhan
Thu Mar 10, 2005 1:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: capture warning message
Replies: 15
Views: 7255

Hi Naren,

In RT_LOGnnn, nnn is the job number. You can get the job number using the following query

SELECT JOBNO FROM DS_JOBS WHERE NAME='jobname'

You can describe the DS_JOBS hash file using LIST DICT DS_JOBS.

HTH
Rich