Search found 89 matches

by abhijain
Wed Mar 03, 2010 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merge Stage using Two Sequential Files
Replies: 9
Views: 4795

it will be something like this...


Switch Stage-->Copy Stage (in place of Seq file)

And from copy stage, drag two links ...one for Sequential File and one for your join stage.
by abhijain
Fri Feb 26, 2010 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: one file with multiple layouts
Replies: 9
Views: 5427

CFF (complex flat file) is a kind of file available under datastage palettel/Files category.
But, I am not sure whether it will fulfill your requirement or not. I never used it.
by abhijain
Fri Feb 26, 2010 5:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion error - TimeStamp_From_String
Replies: 6
Views: 13009

Use

StringToTimestamp((<Field_Nmae>,"%yyyy-%mm-%dd %hh:%nn:%ss")

%nn is the correct one for month.
by abhijain
Fri Feb 26, 2010 12:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join stage
Replies: 4
Views: 2761

No. There is no other way.
by abhijain
Tue Feb 23, 2010 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple environments - same project
Replies: 15
Views: 5446

Better create different project for TEST and UAT.
by abhijain
Tue Feb 23, 2010 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unit Testing
Replies: 3
Views: 7855

Usually, Unit testing covers the testing of individual job/sequence. We need to ensure whether the job is completely performing the task, what it is supposed to do. It should fullfill all the business logic coded in the job. We should prepare the test cases corresponding to all key logic coded like ...
by abhijain
Tue Feb 23, 2010 6:08 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Change Capture Stage
Replies: 4
Views: 20892

'update when there is a delete'
Change capture performs delete when there is a delete ideally. It does what it is supposed to do.

Alternatively, you can validate the value of change_code=2(Delete) in filter/transformer stage after change capture and can perform the update operation.
by abhijain
Tue Feb 23, 2010 6:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple lookups against same dataset
Replies: 10
Views: 4470

why are you creating multiple datasets. Just use the single dataset for all of your lookup's.

1. If doing multiple lookup's in the same job then use the copy stage.
2. If doing lookup's in separate job's then no need to create copy of dataset. Use the original one.
by abhijain
Mon Feb 22, 2010 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to view data from lookup fileset
Replies: 3
Views: 1895

You can not view data of lookup fileset. No such utility exist.
by abhijain
Mon Feb 22, 2010 6:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Properties is required to be set but Empty
Replies: 2
Views: 1750

Please describe your problem in details....where are you viewing data, in which stage???
by abhijain
Mon Feb 22, 2010 2:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: nulls
Replies: 3
Views: 2212

Specify your requirement clearly. What type of source it is.

1. Databases have their respective functions to deal with NULL.
2. Sequential file don't have datatype.
3. Transformation functions are there.

Please specify your requirement.
by abhijain
Thu Feb 18, 2010 4:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create Columns Name with spaces
Replies: 4
Views: 3098

You can't create the column name with spaces in between.

If you would like to show it in your .cvs file can work with ways Guru's suggested.
by abhijain
Thu Feb 18, 2010 4:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to update the job version number automatically
Replies: 6
Views: 4569

DS doesn't have the version control. One can manually maintain it.

Use of Version Control tool can help to maintain the different versions of the code.
by abhijain
Thu Feb 18, 2010 3:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ...
Replies: 6
Views: 1913

Play with Stage Variables and assign the value as per your requirement. Check the nullability of all the output columns in stage variable and assign flags 'T' or 'F' to the stage variable. Also, check the required format of date. Then, in the constraint section, check the stage variable flag value f...