Search found 42189 matches

by chulett
Sat Jul 30, 2011 10:17 am
Forum: General
Topic: Need to pass a parameter across all jobs
Replies: 9
Views: 12116

Yes, it exists. It's a Sequence job stage.
by chulett
Sat Jul 30, 2011 10:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ROW NUMBER for sequential file stage
Replies: 4
Views: 5059

Yes, via a stage variable in a transformer.
by chulett
Sat Jul 30, 2011 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ROW NUMBER for sequential file stage
Replies: 4
Views: 5059

1. It looks like that option was added in the 8.x release, so no. 2. You can generate the current row number if you are careful with any partitioning. If you need to know the total number of records while the job runs, you'll need to count them ahead of time and pass the count in as a job parameter.
by chulett
Sat Jul 30, 2011 6:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: converting date
Replies: 13
Views: 4848

Make sure your output is a string and use an appropriate mask for the DateToString() function, i.e. one without delimiters.
by chulett
Fri Jul 29, 2011 2:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to load "2011-02-02T14:05:35" to Timestamp co
Replies: 5
Views: 2381

There is, however, a Convert() function which converts one character with another. Same thing, really.
by chulett
Fri Jul 29, 2011 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to insert space before each letter in CAPS
Replies: 3
Views: 1317

Easily? Not sure there's an easily here but I would imagine you could whip up something in C++ to do this.
by chulett
Fri Jul 29, 2011 8:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to load "2011-02-02T14:05:35" to Timestamp co
Replies: 5
Views: 2381

Because of the 'T' and thus your use of "%DDT" in the mask. Convert it to a space and then convert the timestamp like 'normal'.
by chulett
Fri Jul 29, 2011 8:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-24374: define not done before fetch or execute and fetch
Replies: 4
Views: 4473

That's an OCI error and the fact that it goes away on a re-run will make it difficult to track down. You'd really need to involve your official support provider to get to the bottom of this but let's start with some questions: what version of the Oracle client is installed on the DataStage server? I...
by chulett
Fri Jul 29, 2011 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what does Disable Array Fetch for Clob Datatype do?
Replies: 3
Views: 2039

"Reduced by 2 minutes" is pretty meaningless on its own, what was the total run-time before and after? If all you've performed is one test on a small number of rows, that could simply be a normal variance. As to the IPC stage, they're not the silver bullet people seem to think they are. An...
by chulett
Fri Jul 29, 2011 7:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what does Disable Array Fetch for Clob Datatype do?
Replies: 3
Views: 2039

1. Try it, let us know

2. I assume "1" since anything higher would imply the use of an array

3. No
by chulett
Thu Jul 28, 2011 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can we implement Arr... in Transformer stage .....
Replies: 2
Views: 1571

Before we go too far down the rabbit hole, define for us what you mean by "arrays"... and why you are asking this question. What do you have in mind?
by chulett
Thu Jul 28, 2011 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to do a bulk Load using an ODBC connector for SQL Server
Replies: 2
Views: 982

Sounds much the same as this issue. Short answer to the question in the subject? You can't.
by chulett
Thu Jul 28, 2011 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database stages used for lookup and pass through args
Replies: 11
Views: 4263

The where clause is automatically generated for any columns marked as a "key".
by chulett
Thu Jul 28, 2011 2:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: trailer count/record count
Replies: 2
Views: 1274

I'm not sure why you would check a stage variable and then convert something else, might work better if you convert vCleanRec as well. Biggest thing is the "inputx" after the if that is not needed and probably messing up the output. First try this to minimize the changes: If IsValid("...