Search found 43 matches

by chowdhury99
Fri Apr 16, 2010 9:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sting to time conversion
Replies: 13
Views: 4724

Use TO_CHAR function:
TO_CHAR(ColumnName, 'DD-MON-YYYY') )

Thanks
by chowdhury99
Thu Apr 15, 2010 11:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help with the code
Replies: 8
Views: 2765

It does not make sense to get same 2 columns. Anyway, you may map source column to both target column.

Thanks
by chowdhury99
Thu Apr 15, 2010 9:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parameter set usage
Replies: 11
Views: 4556

Parameter Set helps you reuse the whole set and when you need to change you only change in one place instead of every job.

Thanks
by chowdhury99
Thu Apr 15, 2010 8:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence hangs at checkpointing
Replies: 9
Views: 16346

Use Excep_ErrorHandling and Terminator_Activity stages in sequence. If any exception happens it will stop the job.

Thanks
by chowdhury99
Thu Apr 15, 2010 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parameter set usage
Replies: 11
Views: 4556

You could define those values in User Define Variable[project level] at DataStage Admin.

Thanks
by chowdhury99
Thu Apr 15, 2010 8:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Computation
Replies: 3
Views: 1926

Use transformer sate and stage variable.

Thanks
by chowdhury99
Wed Apr 14, 2010 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture changes at file level
Replies: 7
Views: 4413

I don't think so. You have to specify those columns.

Thanks
by chowdhury99
Wed Apr 14, 2010 2:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to update existing rows in DB2
Replies: 5
Views: 2390

Remove hypens from the date format make it yyyy%mm%dd"

Thanks
by chowdhury99
Wed Apr 14, 2010 2:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find what is installed
Replies: 3
Views: 2852

If you click Help on DataStage Designer and click "About DataStage Designer", it will popup about Version, Build Number and Other info. At the bottom of the popup there is a clickable , "Show Patch Install History". You may click that get the history [I am talking about DataStage...
by chowdhury99
Wed Apr 14, 2010 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Change apply stage
Replies: 2
Views: 2549

Did you mapped ChangeCode() to output column?

Thanks
by chowdhury99
Wed Apr 14, 2010 1:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer
Replies: 10
Views: 3902

Use Execute Command stage in Sequence and use wc -l filename command to get the total count.

Thanks
by chowdhury99
Thu Mar 04, 2010 8:59 pm
Forum: General
Topic: How is the Datastage market this year?
Replies: 5
Views: 2851

Keep trying. Use corp2corp, monster, dice job portals. Good luck!
by chowdhury99
Thu Mar 04, 2010 8:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trimming all VarChar Fields
Replies: 6
Views: 2737

You may try this:
If Trim(Column_Name) = '' Then '' Else Trim(Column_Name)