Search found 42189 matches

by chulett
Tue Jun 30, 2009 11:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read unix file from Server job or sequence
Replies: 8
Views: 1489

You create a generic routine to call DSGetLinkInfo for any completed job and then leverage that with a Routine Activity stage in a Sequence job. Pass it job,stage,link at runtime.
by chulett
Tue Jun 30, 2009 9:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Upsert to Oracle and Triggers
Replies: 5
Views: 2157

Any 'improperly designed' database object can cause 'issues'. I think triggers generally get a bum rap with campfire lore suggesting that they are some kind of evil boogeymen used to scare young DBAs. Triggers are just fine when designed and used properly. First you need to clarify exactly what it i...
by chulett
Tue Jun 30, 2009 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mutiple Instance Invocation ID
Replies: 24
Views: 15929

Works fine for me on 7.5.2. Use the "..." External Parameter Helper to pick the right value from the Start Loop stage rather than typing it by hand. Should end up looking something like this:

#StartLoop_Activity_Stage_Name.$Counter#
by chulett
Tue Jun 30, 2009 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mutiple Instance Invocation ID
Replies: 24
Views: 15929

What's your exact "7.x" version of DataStage?
by chulett
Tue Jun 30, 2009 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Client 7.5.1 Service Pack 3 Issue
Replies: 3
Views: 1793

Other than what I posted? Apparently not, and I'm not sure many businesses have deployed SP3. If what worked for me didn't for you, then it seems to me that you either need to see about rolling back SP3 or contact your official support provider for a patch / workaround, see if it's a known issue.
by chulett
Tue Jun 30, 2009 6:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: installation issue
Replies: 6
Views: 1734

We know.
by chulett
Tue Jun 30, 2009 6:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: installation issue
Replies: 6
Views: 1734

A little OT but you should be installing 8.1 not 8.0.1. IMHO.
by chulett
Tue Jun 30, 2009 6:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looping with different parameters in a sequencer
Replies: 8
Views: 1654

My journey down that path documented here: viewtopic.php?t=127425
by chulett
Tue Jun 30, 2009 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage -Transformer
Replies: 19
Views: 7325

As noted earlier, the only way to know for certain would be to have support analyze the core dump.
by chulett
Tue Jun 30, 2009 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SLEEP function clarification
Replies: 8
Views: 2384

Was wondering... don't think I've ever actually used the internal one but have shelled out and used the O/S sleep function without issue many (many) times and places.
by chulett
Tue Jun 30, 2009 6:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error invoking Data Stage sequncer calling SFTP script
Replies: 1
Views: 3848

You're probably not passing the parameters correctly. Hard to say without proper details. And in your script you either need to 'cd' to your source location or use a full path.
by chulett
Tue Jun 30, 2009 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update Environemt Variables
Replies: 17
Views: 5266

Hi Chulett The Updation of environment variables is for our surrogate key approach as outlined below http://it.toolbox.com/blogs/dw-soa/surrogate-key-generation-in-datastage-an-elegant-way-22482 Hope this clarifies... Hmmm... it does, thanks. Working routine code should really have been posted alon...
by chulett
Tue Jun 30, 2009 5:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit frequency when using Oracle Load/Append
Replies: 15
Views: 9745

Right, BINDSIZE and READSIZE must be the same. How 'fat' are your rows, perhaps they need to be larger? Regardless, this is strictly a sqlldr issue so your DBA should be able to help you figure out what's going on and get it working 'properly' for you I would think. I really need to get my hands on ...
by chulett
Tue Jun 30, 2009 12:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to solve the "Abnormal termination" in XMLInpu
Replies: 1
Views: 1045

That is a PX variable, not one for Server. And the XML stages have a size limit on files they can process, looks like you've found yours. Any chance your file can be delivered in smaller chunks? That's a pretty unreasonable size and even the wunderkinds at Google put a limit of 100MB on the XML file...
by chulett
Mon Jun 29, 2009 11:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit frequency when using Oracle Load/Append
Replies: 15
Views: 9745

ROWS does control commit points in a Conventional load but you may be overriding your setting by also including BINDSIZE and READSIZE. Try just using ROWS without the other two, it will then calculate the others appropriately for the bind array from what I recall.