Search found 3329 matches

by Sainath.Srinivasan
Thu Aug 13, 2009 9:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RCP and adding new columns to flow
Replies: 18
Views: 10406

Add a column generator instead of transformer.

That can use schema.
by Sainath.Srinivasan
Thu Aug 13, 2009 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenation
Replies: 3
Views: 1657

Are they char or varchar ? What are their lengths ?

Make all varchar and do a trim on A and B.
by Sainath.Srinivasan
Wed Aug 12, 2009 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting the row
Replies: 10
Views: 3551

Why do you want to extract using field() and not define them as seperate fields in the metadata ?
by Sainath.Srinivasan
Wed Aug 12, 2009 4:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clear file after successful job completion
Replies: 3
Views: 896

Do your project use a phrase called "archiving" ?

Anyhow, if you want to clear, you can do a

Code: Select all

echo '' > fileName
by Sainath.Srinivasan
Tue Aug 11, 2009 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: INvoking a store procedure from a routine
Replies: 5
Views: 2012

Why from routine?

You can call it from a job using stored procedure stage.
by Sainath.Srinivasan
Tue Aug 11, 2009 5:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSLinks from a transformer
Replies: 10
Views: 2386

Completely agree with Ray. But one method I think may work...... Get a reject link from your first Oracle insert and funnel it together to pass into second Oracle insert. But the plan will be to include a dummy column generator or modify in the reject link to add all columns you need to insert into ...
by Sainath.Srinivasan
Mon Aug 10, 2009 8:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Design
Replies: 12
Views: 2520

Use parameters.
by Sainath.Srinivasan
Mon Aug 10, 2009 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: consolidate the date ranges
Replies: 15
Views: 3167

The initial requirement (as updated on 10:19 am) appears to be a simple aggregation followed by ordering by date.

Btw, what did you try ?
by Sainath.Srinivasan
Mon Aug 10, 2009 2:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File
Replies: 1
Views: 805

Can your OS handle it ? If yes, search for 64 bit hashed files.
by Sainath.Srinivasan
Sat Aug 08, 2009 8:55 am
Forum: General
Topic: Where can I get this Match Function?
Replies: 14
Views: 3724

Forgot to ask, did you look into the LIKE operator in filter stage ?

Did that help you in any way ?
by Sainath.Srinivasan
Sat Aug 08, 2009 8:13 am
Forum: General
Topic: Where can I get this Match Function?
Replies: 14
Views: 3724

Will the rows having ids identical to your company's will be discarded completely or loaded in few target but not all ? Also what will be the volume of data processed ? If the volume is small, I will load the patterns in a table and do a spare lookup with pattern matching in the sql. For large volum...
by Sainath.Srinivasan
Sat Aug 08, 2009 7:16 am
Forum: General
Topic: Where can I get this Match Function?
Replies: 14
Views: 3724

Can you explain more and give some examples.

You have loads of functions apart from index in px.
by Sainath.Srinivasan
Sat Aug 08, 2009 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Combining rows into a single row
Replies: 6
Views: 1884

Wonder why someone will need to do that.

Especially if there is only one column.

The options are
1.) if output is seq file, write with rec delim as none.
2.) if source is seq file, you can remove newline using unix utilities.
by Sainath.Srinivasan
Sat Aug 08, 2009 6:58 am
Forum: General
Topic: Where can I get this Match Function?
Replies: 14
Views: 3724

You do not have match function in px.

you need to include server transfer and perform it there. will be slow.

What do you plan to do ?