Search found 145 matches

by Raghavendra
Wed Nov 29, 2006 6:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD Type 1 - Removing duplicate deliveries
Replies: 4
Views: 1490

yes you can use target database as reference lookup. If you use sparse lookup then thelookup database definetly recognises the newly inserted record. Reading and writing to the same database table won't be a problem. But when you use a sparse lookup you get performance issues if your driving and ref...
by Raghavendra
Wed Nov 29, 2006 1:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error message interpretation
Replies: 3
Views: 1331

You can interpret most of the times from the log message from director.
Check if Orchestrate Operators Reference guide pdf might help.
by Raghavendra
Wed Nov 29, 2006 12:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer satge output links
Replies: 3
Views: 1120

The row will be checked for all the output links and the order in which output links process a row depends on the link odering. The initial order of the links is the order in which they are added to the stage and if you want change the order of output link processing you change from link ordering tab.
by Raghavendra
Wed Nov 29, 2006 5:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fixed widht file problem
Replies: 5
Views: 1988

If you want to read entire record in one column.
Find the possible max length of the record and specify the lenth of the column with that value and datatype as varchar...
by Raghavendra
Wed Nov 29, 2006 5:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implementing Greatest,Least Function in Datastage
Replies: 5
Views: 2976

Convert the dates to julian date and compare them..
by Raghavendra
Tue Nov 28, 2006 11:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: inserting a record to Target if Source SeqFile is Empty
Replies: 2
Views: 1078

I had a scenario like this... I wanted to insert a record into a target database if I find zero records in the source database. Here I have used count in sql query of the source database, which has given me a row with 0 as value. I have checked the count in the transformer stage and if count is 'Zer...
by Raghavendra
Tue Nov 28, 2006 11:29 am
Forum: General
Topic: automation of report generation using shell script
Replies: 4
Views: 3266

Sanjeev kumar,

Did you get solution to your problem.
by Raghavendra
Tue Nov 28, 2006 11:27 am
Forum: General
Topic: Regd. Link Collector
Replies: 3
Views: 3203

enable inter-process row-buffering in the job properties in performance tab and also please close the topic.
by Raghavendra
Mon Nov 27, 2006 12:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: preserv partitioning error?
Replies: 5
Views: 2404

Hi,

If you got solution please give the solution so that others can benefit from the same and also close the topic (mark resolved)
by Raghavendra
Mon Nov 27, 2006 11:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to comment a derivation
Replies: 3
Views: 1590

We cannot put comments inside a derivation.
by Raghavendra
Wed Nov 22, 2006 8:29 am
Forum: General
Topic: Routine to data validate
Replies: 2
Views: 2427

I believe you can check with Iconv function.
by Raghavendra
Thu Nov 09, 2006 9:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove "Phantom" Job
Replies: 8
Views: 2480

Can you explain the fix you made to the problem.
It will be helpful to us.
by Raghavendra
Thu Nov 09, 2006 9:12 am
Forum: General
Topic: Capturing comments added in Version Control.
Replies: 5
Views: 5007

Craig, I am able to find these files in my Version Control Project directory. I'm able to list these file through Administrator command prompt. I am also able to get some information if I run the command SELECT * FROM APM.BATCH. When I tried to select only DESC Column (SELECT DESC FROM APM.BATCH) I ...
by Raghavendra
Thu Nov 09, 2006 6:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting String
Replies: 28
Views: 8042

You can achieve this with Index function also.
Find the position of 'X' with index function then you remove 'X' with substrings function
by Raghavendra
Thu Nov 09, 2006 5:59 am
Forum: General
Topic: automation of report generation using shell script
Replies: 4
Views: 3266

sanjumsm, While writing the rejected records if you have multiple errors for a single record how can you distinguish between them? Based on error descriptions? How are you adding your error descriptions? Are you using one column which contains all the error description for that particular rejected r...