Search found 42189 matches

by chulett
Tue Jun 01, 2010 5:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I process squential files in date order?
Replies: 10
Views: 2152

My answer assumes they actually do need to 'loop' because the files need to be processed individually to completion in the proper order.
by chulett
Tue Jun 01, 2010 5:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem trimming a db2 char datatype value
Replies: 7
Views: 2295

Re: Problem trimming a db2 char datatype value

BradMiller wrote:I am setting APT_STRING_PADCHAR to "0*20".
Surely you mean "0x20", yes? :?
by chulett
Tue Jun 01, 2010 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert Special Character Issue
Replies: 5
Views: 3809

You need to find the decimal value of that character and then use CHAR(xxx) in your Convert() function rather than the actual character.
by chulett
Tue Jun 01, 2010 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Export Routines using dsexport.exe
Replies: 3
Views: 3244

I... don't believe there is one. :(

Let's see what others have to say on the subject.
by chulett
Tue Jun 01, 2010 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job Failure
Replies: 1
Views: 2103

Build a job to redact/mask the PHI elements and create a new file. Verify new file has the same issue. Send new file to IBM Support.
by chulett
Tue Jun 01, 2010 3:15 pm
Forum: General
Topic: Sorting not working
Replies: 8
Views: 2706

After the sort. :wink:
by chulett
Tue Jun 01, 2010 3:13 pm
Forum: General
Topic: How to load large XML files with External Source Stage
Replies: 6
Views: 4427

Have you looked here yet?
by chulett
Tue Jun 01, 2010 7:51 am
Forum: General
Topic: Pbm using CURRVAL in datastage
Replies: 8
Views: 2221

They're already doing the NEXTVAL part upstream... hopefully there's a good reason for that, parent / child load or some such. Still won't fix the fundamental binding problem, however.
by chulett
Tue Jun 01, 2010 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compatibility of Datastage 7.5 Server Edn with Oracle 11g
Replies: 6
Views: 2501

Doesn't "your client" have support? If not, then the whole question of patches is moot.
by chulett
Tue Jun 01, 2010 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to use substring in transformer
Replies: 4
Views: 3233

You'd need to post examples of your actual data for anyone to provide more cogent help.

Arnd, your syntax example is... lacking. :wink:
by chulett
Tue Jun 01, 2010 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compatibility of Datastage 7.5 Server Edn with Oracle 11g
Replies: 6
Views: 2501

Those really should be questions to your official support provider.
by chulett
Tue Jun 01, 2010 7:27 am
Forum: General
Topic: Pbm using CURRVAL in datastage
Replies: 8
Views: 2221

Ray already did. The stage wants at least one column defined and yet you need to leave the ID field out of the stage since it won't be bound to anything.
by chulett
Tue Jun 01, 2010 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installation of Datastage 8.1 into Wondows 7 Home Edition
Replies: 8
Views: 6985

No. The client perhaps but only that.
by chulett
Tue Jun 01, 2010 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Speed up ETL Process in Datastage job
Replies: 12
Views: 10537

Be careful with all of the "drop all indexes and constraints" suggestions. Not always as easy as it sounds (RI) and can be problematic if any other process is accessing your table while it is being loaded. Never mind the fact that it is not guaranteed to be any kind of faster overall, you'...
by chulett
Tue Jun 01, 2010 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I process squential files in date order?
Replies: 10
Views: 2152

Yes, use the Loop stages in a Sequence job to run your file loading job. Use the UserVariables stage to retrieve the filenames in the proper order in a delimited format.