Search found 72 matches

by udayk_2007
Thu Jan 19, 2012 8:17 am
Forum: General
Topic: Query about writing expression
Replies: 3
Views: 2184

yes..looks logical

Thanks

Regards
Ulhas
by udayk_2007
Thu Jan 19, 2012 6:55 am
Forum: General
Topic: Query about writing expression
Replies: 3
Views: 2184

Query about writing expression

Hello guys I have a question about writing a expression.If i am using a string function (ex.concatenation),will it be efficient to write derivation directly in column derivation or calculating it first in stage variable and then assigning it to column derivation will work faster Thanks for your help...
by udayk_2007
Tue Nov 08, 2011 7:59 am
Forum: General
Topic: DataStage Architecture
Replies: 1
Views: 1208

DataStage Architecture

Hello guys

Does anyone has a link, which explains DataStage Architecture in detail?

Thanks

Regards
Ulhas
by udayk_2007
Wed Oct 12, 2011 1:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Stage Query
Replies: 5
Views: 8740

Sort Stage Query

Hello guys

Can anybody please clarify ,what is the difference between 'Create cluster Key Change Column' and 'Create Key Change Column' option in Sort Stage ?

From reading the doc,both the options looks similar.

Thanks in advance for your help

Regards
Ulhas
by udayk_2007
Mon Oct 10, 2011 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help on scenario
Replies: 4
Views: 2669

you can use a copy stage to copy it to 10 different links and then put a funnel stage to combine them
by udayk_2007
Mon Sep 05, 2011 5:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rows Getting Rejected in transformer
Replies: 3
Views: 2242

IsNull function returns true when a expression evaluates to Null. It may be the case that all the values in col2 are not null which is causing this condition to be false for all the rows. Did you tried using IsNotNull. Not Sure if that will solve the problem but you can give it a try.
by udayk_2007
Tue Jul 12, 2011 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Newbie question regarding a debugger
Replies: 12
Views: 6932

Refer to DataStage Parallel Job Developer Guide.Its a nice document to start with
by udayk_2007
Wed Jul 06, 2011 3:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: configuration file
Replies: 4
Views: 2358

configuration file

Hello Friends

Is it possible to use a different configuration file, for a particular stage in a job ?

For ex : The job is using a four node config file ,but a particular stage is needed to be executed on a 6 node configuration file. Is that possible ?

Thanks in advance.

Regards
Ulhas
by udayk_2007
Wed Jul 06, 2011 3:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to use idoc in DS
Replies: 3
Views: 1939

what is IDOC :?:

Regards
Ulhas
by udayk_2007
Tue Jun 28, 2011 7:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not in or not between condition:
Replies: 11
Views: 7466

This can be also acheived using Filter Stage. Not sure if conditions on multiple columns can be placed in the single filter stage. If not supported,you need to use 3 filter stages.

Regards
Ulhas
by udayk_2007
Tue Jun 07, 2011 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplication of records using Datastage
Replies: 4
Views: 2772

you can use a filter to check for the condition and put a copy stage with 3 output links to make 3 copies of the filtered record. Then output of copy stage can be collected together using a funnel stage.

Regards
Ulhas
by udayk_2007
Wed Jun 01, 2011 3:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic Required
Replies: 9
Views: 9530

Using aggregator count rows,we can separate unique and duplicate values but my requirement is directing the records to different files

I guess,using aggregator and followed by filter,we will get the output as

File1
1
3
5

File2
2
4

my requirement is

File1
1
3
5

File2
2
2
4
4
by udayk_2007
Wed Jun 01, 2011 1:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic Required
Replies: 9
Views: 9530

Logic Required

Hi friends

Can you please help me with the logic for the following requirement

Source
1
2
2
3
4
4
5

Target1
1
3
5

Target 2
2
2
4
4

Basically the records with duplicate values should go to a file and unique records should be collected in other file.

Thanks in Advance

Regards
Ulhas
by udayk_2007
Fri May 06, 2011 5:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Spiltting a huge file into multiple small files
Replies: 5
Views: 3347

unix split command can be used for this purpose.

Regards
Ulhas
by udayk_2007
Tue Nov 02, 2010 4:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get Reject records
Replies: 10
Views: 5900

Other option is,set nullable to 'No' for all columns in the source sequential stage and put a reject link there

Regards
Ulhas