Search found 42189 matches

by chulett
Thu Nov 27, 2008 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Error - OCI_NEED_DATA
Replies: 5
Views: 4166

You may be out of luck. How much actual data is in the CLOB? Does your version of Oracle have the DBMS_LOB package? Have you tried casting or substringing the CLOB in your SQL?
by chulett
Thu Nov 27, 2008 12:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Error - OCI_NEED_DATA
Replies: 5
Views: 4166

Yes, it's from the CLOB which is an unsupported data type. What data type/size did you use for that field in your job? Does it help if you set the Array Size to 1?
by chulett
Thu Nov 27, 2008 12:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job halt without reason
Replies: 15
Views: 4171

Right - what we still refer to as 'transaction size' is properly the 'Rows per transaction' setting on the Transaction Handling tab. Any value in the old field is ignored. So, you set it to zero or it was already set to zero? When will you know if the change (assuming one) made things any better for...
by chulett
Thu Nov 27, 2008 12:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation error
Replies: 4
Views: 1974

Search is your friend! Try an exact search for "This job contains one or more unattached links".
by chulett
Thu Nov 27, 2008 12:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: file creation
Replies: 7
Views: 1739

Understood. Suggestion was to use the current time, not a Job Parameter. A script called "after job" could easily do this.
by chulett
Thu Nov 27, 2008 12:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting large amount of table definitions?
Replies: 1
Views: 776

First thought? Patience. How long did you wait before you declared it "effectively hung"?
by chulett
Thu Nov 27, 2008 12:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job halt without reason
Replies: 15
Views: 4171

Array size = 1500 transaction size =1000 Bad combination sending 1500 records at a time but committing every 1000. What I've found works best is where Transaction Size is an even multiple of Array Size. So, for example: Array size = 1500 Transaction size =3000 But then again that is a pretty small ...
by chulett
Wed Nov 26, 2008 5:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored proc Issue
Replies: 7
Views: 2062

Suggest you don't really need a proc for that. :wink:

As to what your particular proc / stage issue is... sorry, no clue.
by chulett
Wed Nov 26, 2008 5:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Copy jobs from one project to another project
Replies: 5
Views: 1271

I have no idea why it would take so long to export, but then I haven't had the pleasure of making 8.x's acquaintance.

Both the Package Installer and Version Control have been deprecated so not really worth explaining either one.
by chulett
Wed Nov 26, 2008 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record format error when converting XML data
Replies: 12
Views: 4421

D'oh. I was trying to come up with a simple way to include the path, since it more than likely was a job parameter, but couldn't for the life of me figure out where to combine that with the filename in the XML Input or External Source world. Transformer, bah. [face palm]
by chulett
Wed Nov 26, 2008 3:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record format error when converting XML data
Replies: 12
Views: 4421

ray.wurlod wrote:Most find commands have an option to limit the number of levels of search.

One would think so, but I couldn't find one that worked for me. Perhaps I just need to look more better.
by chulett
Wed Nov 26, 2008 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record format error when converting XML data
Replies: 12
Views: 4421

That just gets the filename, we need to supply the full path to the stage.
by chulett
Wed Nov 26, 2008 3:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Exponent
Replies: 11
Views: 2802

Nice.
by chulett
Wed Nov 26, 2008 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not able to create project
Replies: 7
Views: 1864

Yuck.
by chulett
Wed Nov 26, 2008 8:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling CLOB datatype in datastage
Replies: 7
Views: 7516

Do you have any idea what the max size of the CLOB data is? I've had good luck using the built-in DBMS_LOB package to process ours but they're not mongo huge like Arnd's were.