Search found 19 matches

by Mayur Dongaonkar
Thu May 15, 2008 11:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Impact and gap analysis
Replies: 1
Views: 1769

Re: Impact and gap analysis

I think one possible option will be exporting Datasatage project into Unix file and performing grep operation for perticular column. It will give you in which Datastage jobs that column is used.
by Mayur Dongaonkar
Tue Jan 22, 2008 2:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in seq file
Replies: 8
Views: 3691

Re: error in seq file

Check metadata and Final delimiter property of your sequence file stage.
Also try to do view data on Sequential file stage before running job.
by Mayur Dongaonkar
Tue Jan 08, 2008 2:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: capture duplicates
Replies: 5
Views: 3625

Re: capture duplicates

Duplicates can be captured by following stage:

Dataset ----> sort ( on key columns ) ---> aggregator ( on key columns + count operation ) ---> filter ( count > 1 ) ---> sequencial file
by Mayur Dongaonkar
Wed Jan 02, 2008 5:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem in format checking
Replies: 3
Views: 1296

Re: problem in format checking

Try using combination of following functions

1. Trim
2. Length

Trim function will return digits before occurance delimiter.
e.g. 99-999-9999
2 digits after first ocurance of delimiter -.
by Mayur Dongaonkar
Wed Jan 02, 2008 5:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Equalient DataStage function for oracle ceil
Replies: 6
Views: 5484

This can be achieved by using Switch stage.
by Mayur Dongaonkar
Wed Jan 02, 2008 4:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Range
Replies: 4
Views: 1925

This can be achieved by using Substring function.
by Mayur Dongaonkar
Wed Nov 28, 2007 6:40 am
Forum: General
Topic: Restartability while running multiple Datastage jobs through
Replies: 7
Views: 5791

Sequencer will take care for restartablity. I agree with it. But we really do not want to build additional sequencer for this requirement. We want to keep it between single Unix shell script and multiple Datastage jobs in it.
by Mayur Dongaonkar
Wed Nov 28, 2007 6:01 am
Forum: General
Topic: Restartability while running multiple Datastage jobs through
Replies: 7
Views: 5791

Our scheduler will call only unix scripts.
by Mayur Dongaonkar
Wed Nov 28, 2007 5:03 am
Forum: General
Topic: Restartability while running multiple Datastage jobs through
Replies: 7
Views: 5791

Restartability while running multiple Datastage jobs through

My requirement is to call three datastage jobs through a unix shell script. Shell script will call one job after another. But if any job aborts, then during re-run shell script should start running the jobs from point of failure. Example: Shell script is calling Datastae jobs A -> B -> C If A comple...
by Mayur Dongaonkar
Wed Nov 28, 2007 2:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem in filter condition---
Replies: 6
Views: 2943

Try to do data comparision by using iconv functions.
by Mayur Dongaonkar
Thu Nov 22, 2007 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to load in to target files
Replies: 2
Views: 1167

Source File ----> Copy Stage -----> Sort Stage ---> Remove dulicate ---> Target File1
|
|
-----------> Sort Stage ---> Agg Stage ---> Filter ( Count > 1 ) ---> Target File12
by Mayur Dongaonkar
Wed Oct 31, 2007 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run the SQL script file
Replies: 1
Views: 1101

In db2 we have db2 -tvf scriptname. But I am not sure about teradata.
by Mayur Dongaonkar
Fri Sep 14, 2007 5:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data caching - Commiting data batch wise
Replies: 3
Views: 1928

Re: Data caching - Commiting data batch wise

You have to set arraysize = 1 L and commit size = 1 L option.