Search found 42189 matches

by chulett
Fri Mar 22, 2013 7:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Omit null columns in XML output
Replies: 5
Views: 1536

eostic wrote:Maybe someone can split this into its own thread.
Maybe? :wink:

Done.
by chulett
Thu Mar 21, 2013 11:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TD Connector Stage Bulk Load
Replies: 11
Views: 5374

Looks like one solution would be to drop your array size below 150.
by chulett
Thu Mar 21, 2013 11:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Connection to Ms Access
Replies: 6
Views: 2353

I didn't look any further than doing a google search for "system resource exceeded" but it did bring up quite a number of topics on the subject. Probably some good information out there for you...
by chulett
Thu Mar 21, 2013 11:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stored procedure in ODBC Connector Before SQL
Replies: 2
Views: 1818

Interesting, certainly needed for other databases. And (a minor correction) those are parenthesis not brackets. :wink:
by chulett
Thu Mar 21, 2013 9:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate seq number in transformer only when the key changes
Replies: 14
Views: 9937

Good... then I don't see the need to play first row games and I see that you've posted to that effect. Thanks.
by chulett
Thu Mar 21, 2013 9:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stored procedure error
Replies: 13
Views: 3740

Some other line than what? It's clear they have a true "Large OBject" they are dealing with, hence the errors when it tries to shove it into a VARCHAR. And hence my suggestion to check to see of the stage even supports those objects.
by chulett
Thu Mar 21, 2013 9:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate seq number in transformer only when the key changes
Replies: 14
Views: 9937

Two things. One is I can't try squat as I haven't had DataStage access for 3 years now, having moved over to the Dark Side. Second, doesn't the dang product allow you to set the initial value of a stage variable yet on the Parallel side? Been there since Day One for Server and being able to do so wo...
by chulett
Thu Mar 21, 2013 7:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stored procedure error
Replies: 13
Views: 3740

Because theirs isn't.
by chulett
Thu Mar 21, 2013 7:48 am
Forum: General
Topic: Using DSOpenProject, DSOpenJob and DSCloseJob
Replies: 2
Views: 1314

Done. :wink:

Why are people seeing a need to use these functions?
by chulett
Thu Mar 21, 2013 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'DB2 connector' collecting method is not working in DB2 conn
Replies: 6
Views: 2051

Determine what is different about the two environments with regards to your connecting user and the permissions that it has. Obviously something is different there.
by chulett
Thu Mar 21, 2013 7:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate seq number in transformer only when the key changes
Replies: 14
Views: 9937

What makes you think you need to handle the first row differently? :?
by chulett
Thu Mar 21, 2013 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stored procedure error
Replies: 13
Views: 3740

In your shoes I'd be contacting your official support provider, see if the stage even supports CLOBs.
by chulett
Thu Mar 21, 2013 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stored procedure error
Replies: 13
Views: 3740

prasannakumarkk wrote:I have successfully implemented with varchar.
Only because your CLOB value was small, i.e. 4K or less.
by chulett
Thu Mar 21, 2013 7:16 am
Forum: General
Topic: Exception Handler: Special character in $ErrMessage
Replies: 3
Views: 1959

So a Value Mark, eh? Interesting. Thanks for coming back and updating.
by chulett
Wed Mar 20, 2013 11:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date appearing in internal format when viewed from OCI stage
Replies: 7
Views: 3011

Why user-defined? Why not let the stage generate the SQL? If you did you'd find that it used a better mask for the TO_CHAR() function, one appropriate for a Timestamp data type: SELECT DW_DATE_ID,TO_CHAR(DATE_DT, 'YYYY-MM-DD HH24:MI:SS') FROM STG2D_DATE If you are consistent with your Oracle DATE ha...