Search found 42189 matches

by chulett
Wed Aug 25, 2010 9:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert successful but update failure
Replies: 3
Views: 1057

No, it's more Insert Else Update rather than Insert And Update from what I recall. Could be wrong as it has been quite some time since I've actually worked with the tool. :? :(
by chulett
Wed Aug 25, 2010 9:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loop Activity- Return status of each loop
Replies: 8
Views: 3857

If you go that route, make sure you initialize / empty / clear the sequential file before you hit the loop as inside the loop you'll want to append to the file. That or have your mechanism be smart enough to overwrite on the first iteration and append after that.
by chulett
Wed Aug 25, 2010 9:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert successful but update failure
Replies: 3
Views: 1057

Your update will only fire if the insert fails and for that to happen you basically need to violate a unique constraint, i.e. insert a duplicate key. Do you have such a constraint on your table?
by chulett
Wed Aug 25, 2010 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Promote Subrecord stage
Replies: 9
Views: 2721

mhester wrote:Sorry, did not mean to post that twice!
Unposted. :wink:
by chulett
Wed Aug 25, 2010 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MERGE STATEMENT in datastage?
Replies: 9
Views: 6373

Re-read this thread. You are correct in that MERGE combines two tables, not one table and an input stream, hence the suggestion to do it before/after and trigger it with a single row into the stage.
by chulett
Wed Aug 25, 2010 1:10 pm
Forum: General
Topic: Check job name,project name existence
Replies: 5
Views: 1940

There are dsjob options to list all projects and to list all jobs in a project, those should get you exactly what you need.
by chulett
Wed Aug 25, 2010 1:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Custom - 'Insert else Update' or 'Update else insert'
Replies: 5
Views: 2302

I'm actually not sure, never tried it as I tend to avoid those 'combo' actions. Why not give it a shot and let us know?
by chulett
Wed Aug 25, 2010 11:00 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Calling a webservice
Replies: 11
Views: 8116

kennyapril wrote:where can I add them?
Pretty much anywhere but I'd suggest just after the INFORMIX ones and before the "fi".
by chulett
Wed Aug 25, 2010 10:36 am
Forum: General
Topic: Verify if the job can run with invocation id or not
Replies: 1
Views: 1312

Try the -jobinfo option rather than any kind of -run and see if there is anything in the output that shows if it is MI enabled or not.
by chulett
Wed Aug 25, 2010 9:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file weired character
Replies: 3
Views: 1699

No clue how to explain that one as long as you are certain you are reading and writing to the exact same hashed file. Worst case, manually delete the hashed file's directory and it will recreate it on the next run.
by chulett
Wed Aug 25, 2010 9:05 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Calling a webservice
Replies: 11
Views: 8116

Add them to your dsenv file.
by chulett
Wed Aug 25, 2010 7:44 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Calling a webservice
Replies: 11
Views: 8116

Do an exact search here for "unable to create Java Virtual Machine".
by chulett
Wed Aug 25, 2010 7:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loop Activity- Return status of each loop
Replies: 8
Views: 3857

Thought about that but honestly don't think you can update values in that stage. Could be wrong, though but have no way to test anything. :?
by chulett
Wed Aug 25, 2010 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: In DataStage have any limitation for Job Name?
Replies: 7
Views: 4074

Then it seems like it must be turned on for those specific jobs.
by chulett
Wed Aug 25, 2010 7:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing rejected rows in Oracle
Replies: 12
Views: 3821

OK, let's go the opposite direction then. Do not mark the link as a Reject link and restore your 'LinkName.REJECTED' constraint value. Make sure you pick that from the Helper rather than type it in manually. Both of those approaches should work just fine. If they're not, we're missing something impo...