Search found 42189 matches

by chulett
Fri May 07, 2010 7:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WHERE condition as a parameter
Replies: 8
Views: 2577

The issue is always the same when people feel the need to do this - DataStage strips the quotes from the parameter. You need to 'escape' them to try to preserve them.
by chulett
Fri May 07, 2010 7:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete the category in automated way
Replies: 5
Views: 1442

Why do you think you need to delete anything to be able to 'redeploy your code'?
by chulett
Fri May 07, 2010 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Input server job finished with no output
Replies: 6
Views: 1946

reachsam11 wrote:BTW, the version is 8.0
BTW - update, update, update! :wink:
by chulett
Fri May 07, 2010 12:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Input server job finished with no output
Replies: 6
Views: 1946

You seem to have no namespace information in your actual XML so it should be removed from your job.
by chulett
Fri May 07, 2010 12:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Runs Slow
Replies: 6
Views: 1444

Please clarify exactly what this is supposed to mean - "The join is on one dummy value of 1 to fetch one value from the reference table". Are you saying you are fetching the same (essentially) static value over and over from a database table? :? Gory details and examples always appreciated.
by chulett
Fri May 07, 2010 11:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Updates Running Very Slow
Replies: 11
Views: 2821

I wasn't addressing any specific period of time and what it may (or may not) be doing then, just your concerns regarding how long it was/is taking to do the actual work.
by chulett
Fri May 07, 2010 10:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parallel sub routines
Replies: 8
Views: 2701

What do you consider a "parallel sub routine" to be? Depending on the answer, we could be talking C++ or BASIC here.
by chulett
Fri May 07, 2010 10:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aborting Sequence if job finshed with warnings
Replies: 9
Views: 11277

That wasn't clear from anything you've posted so far. Then, as noted, mess or not you'll need explicit triggers.
by chulett
Fri May 07, 2010 9:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Updates Running Very Slow
Replies: 11
Views: 2821

Those commit values are, in effect, your 'transaction size'. That being said, unless your DBAs have you cranked down pretty tight on redo/undo/rollback space, I would never commit that often for 'large' volumes. There are two sides to every story and while Ray is (mostly) right about the use of a si...
by chulett
Fri May 07, 2010 9:34 am
Forum: General
Topic: XML Developer's Guide
Replies: 2
Views: 1484

There's also the XML Best Practices document at Kim Duke's website.
by chulett
Fri May 07, 2010 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aborting Sequence if job finshed with warnings
Replies: 9
Views: 11277

Another option would be to build a custom routine that scans the current job log for warnings and aborts the Sequence if it finds any.
by chulett
Fri May 07, 2010 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting Error while loading data into oracle(9i) table
Replies: 2
Views: 2236

Right, for the sqlldr part you need to locate the ".log" file and see what it thinks is wrong.
by chulett
Fri May 07, 2010 6:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Updates Running Very Slow
Replies: 11
Views: 2821

I'd also be curious if the fields used as Key fields for the update are indexed. If not, that's a classic reason why they might take 'longer and longer' - full table scans.
by chulett
Thu May 06, 2010 5:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Field mark system variable
Replies: 2
Views: 3892

Doing an exact search for @FM would be the first suggestion, or perhaps this might have enough information in it.
by chulett
Thu May 06, 2010 4:52 pm
Forum: General
Topic: [DataStage][SQL Client]Data has been truncated
Replies: 6
Views: 4019

What kind of target columns do you have? You'll primarily see this with CLOB or unbounded NUMBER fields, from what I recall.