Search found 85 matches

by vigneshra
Wed Oct 13, 2004 5:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection Fail in DataBase
Replies: 7
Views: 2637

In a post-job subroutine you can read the Datastage job log from where you can get the reason for the job failure. If it is due to database down you can use DSSendMail function to send a mail notifying the database failure to the intended persons.
by vigneshra
Wed Oct 06, 2004 3:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting Blank Rows into a file
Replies: 7
Views: 2842

If I have understood your problem correctly, you can make use of Coalesce function in DB2 which substitutes a desired value whenever a null is returned from an expression. If you can explain more on what you need exactly, I can give you the pseudo SQL query.

Vignesh.
by vigneshra
Wed Oct 06, 2004 2:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warining while using hash paritioning
Replies: 5
Views: 6164

I think Lakshmi needs to revisit her post or reply before she clicks submit. Lot of spelling mistakes !! Juz kidding :) You need to change the preserve partition flag to clear at the place where it is throwing warning. But as you said, the warning sometimes will not be state precisely on which place...
by vigneshra
Thu Sep 30, 2004 1:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Stage Vs Filter Stage
Replies: 7
Views: 8743

I got it folks !! I put the syntax here. May be it will be of use to someone.

TRANSACTION_DATE BETWEEN '#TABLE1_START_DATE#' AND '#TABLE1_END_DATE#'

Thanks !!
Vignesh.
by vigneshra
Thu Sep 30, 2004 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Stage Vs Filter Stage
Replies: 7
Views: 8743

I tried using filter stage for doing this but ended up in the job abortion due to incorrect syntax in where clause. I explain you li'l bit more. Here in this job, we are passing the date parameter values to the job through a unix script. One of the columns input to the filter stage is a date column ...
by vigneshra
Wed Sep 29, 2004 11:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Stage Vs Filter Stage
Replies: 7
Views: 8743

Infact no other transformations involved. It is a straight pull from source table to 7 target tables based on the date range. So can I assume that filter stage gives a better performance.

Vignesh.
by vigneshra
Wed Sep 29, 2004 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Stage Vs Filter Stage
Replies: 7
Views: 8743

Transformer Stage Vs Filter Stage

Hi In our project, we have a requirement like we need to forward records from one table to 7 other tables based on the value of a date column. If date falls in range1 then it should go to table 1 or if it falls in range2 then it should go to table 2 and so on. Which stage performs well in this case ...
by vigneshra
Tue Jul 13, 2004 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup fileset or direct lookup
Replies: 0
Views: 513

Lookup fileset or direct lookup

We have one confusion of selecting either Lookupfileset or performing a direct lookup onto the DB2 table. We are looking into a dimension table which has around 150 million records and has 4 columns. Which is advisable ?? Either a lookup fileset or to perform a direct lookup. Also if it is a lookup ...
by vigneshra
Wed Jun 30, 2004 9:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing my first PX job
Replies: 6
Views: 3651

As Ray said, no such hashed file stage in PX. You can use either Merge, lookup or join to do your lookup needs. Also you can assign nodes depending on your PX server configuration to achieve partition and pipeline parallelism in which each node will do the operation parallely which eventually improv...
by vigneshra
Wed Jun 16, 2004 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ignore duplicated rows
Replies: 6
Views: 2897

Re: Ignore duplicated rows

Hi all, I'm trying to ignore the duplicated rows from an input. I mean, this is the input: AAAA,BBBB,CCCC AAAA,BBBB,CCCC AAAA,BBBB,CCCC XXX,YYY,ZZZ XXX,YYY,ZZZ XXX,YYY,ZZZ and this is the output i want to get AAAA,BBBB,CCCC XXX,YYY,ZZZ seems easy, but am a newbie. thanks. Based on some key you need...