Search found 4 matches

by tomk
Mon Oct 20, 2008 9:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to extend files more the 2 GB
Replies: 3
Views: 1721

Re: Unable to extend files more the 2 GB

Check with your UNIX system administrator. There may have been a file size limit set on your user id.
by tomk
Thu Sep 25, 2008 12:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How To Change the Length Of a Column In ModifyStage
Replies: 2
Views: 1249

Re: How To Change the Length Of a Column In ModifyStage

Try:

stringField=substring(string,
starting_position, length)

Where stringField is the output column and string is the input column.
by tomk
Mon Apr 07, 2008 10:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversion
Replies: 2
Views: 1154

Try using the following format when converting from a string to a date:
%mm/%dd/%2000yy

This will translate any yy on the input to 20yy.

When translating back to a string (for output), use the following format:
%yyyy%mm%dd
by tomk
Fri Apr 04, 2008 9:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read a excel file in datastage
Replies: 4
Views: 2736

For Parsing Excel from Perl, take a look at the following URL:

http://www.opensourcetutorials.com/tuto ... page1.html

You will probably need to install the Perl Modules referenced in the article.