Search found 42189 matches

by chulett
Sat Aug 14, 2010 7:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: to change commit level
Replies: 3
Views: 1808

You'll have to build into the job any mechanism to pick up where you left off, something not all that trivial. It involves keeping track of your last commit point and then leveraging that after a restart to skip all of the committed rows, typically by a transformer constraint that only lets rows pas...
by chulett
Sat Aug 14, 2010 7:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: empty file
Replies: 7
Views: 2508

You'll have to do something to ensure you get an empty file from a non-empty source. For example, put something in the where clause that ensures you select zero records, where 1 = 2 for example. Or use a contraint in the transformer that ensures no records get past, @FALSE comes to mind.
by chulett
Sat Aug 14, 2010 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer problem in WIN XP
Replies: 3
Views: 1523

So, you could compile the job but this error is thrown when you try to run the job? :? I find it odd that your path has things that look like assignments, is that normal? I would expect to see segments like this: E:/Ascential/DataStage/Engine/bin: Rather than this: /E=/Ascential/DataStage/Engine/bin...
by chulett
Fri Aug 13, 2010 5:56 pm
Forum: General
Topic: Differnect between various 'ps-ef' commands
Replies: 6
Views: 2187

You could just search here for them, they will turn up. For example:

viewtopic.php?t=131992
by chulett
Fri Aug 13, 2010 4:46 pm
Forum: General
Topic: Differnect between various 'ps-ef' commands
Replies: 6
Views: 2187

1. No clue
2. Client connections
3. rpc daemon, allows #2 to happen
by chulett
Fri Aug 13, 2010 4:43 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: deploying the webservice
Replies: 14
Views: 7857

So... still confusing. Are you saying that you can only see the records in the target when you stop/disable the service? If that is the issue, can you confirm for us how you are handling commits in the target? Typically in a service you'd have to issue explicit commit (or rollback) actions when each...
by chulett
Fri Aug 13, 2010 2:12 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: deploying the webservice
Replies: 14
Views: 7857

I'm afraid you might be confused about what exactly a web service is and the meaning of "deploy" in this context. It seems to me that when you say "deploy" you actually mean "run", especially if you are saying that step takes an hour. Sounds like you have just a regular...
by chulett
Fri Aug 13, 2010 2:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle oci ..before/after sql..
Replies: 5
Views: 2618

Ah, sorry... missed the "in sql" part. Yes indeed, the "call" syntax would be the correct answer here.
by chulett
Fri Aug 13, 2010 2:04 pm
Forum: General
Topic: Differnect between various 'ps-ef' commands
Replies: 6
Views: 2187

They are all the same "ps" command which gets everything as a full listing (ps -ef) they just filter different parts of the results out based on the expression being grep'd for.
by chulett
Fri Aug 13, 2010 12:37 pm
Forum: General
Topic: Sending Multiple Attachment from Notification Activity
Replies: 9
Views: 11407

Not sure that is supported, we would always zip any files to be sent so we could send it out with a single attachment. :?
by chulett
Fri Aug 13, 2010 12:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run job based on Param value
Replies: 7
Views: 1828

Please be clear in your requirements. You have two jobs and need to run one or the other based on a parameter? Or run the second using a parameter from the first? Or ????
by chulett
Fri Aug 13, 2010 12:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle oci ..before/after sql..
Replies: 5
Views: 2618

You can't "retrieve" anything from a proc run before/after sql. Can you not use the Stored Procedure stage for these?
by chulett
Fri Aug 13, 2010 9:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run job based on Param value
Replies: 7
Views: 1828

Use Sequencer job... or is that the part you need help with?
by chulett
Fri Aug 13, 2010 9:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Phantom error and need to stop file creation in &PH&
Replies: 7
Views: 2360

Really would not recommend that. Run a cron script once a day to prune it back as noted instead.
by chulett
Fri Aug 13, 2010 7:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid Julian day
Replies: 5
Views: 2324

How is that one different from any other record? :? You should standardize your Oracle dates so they extract in that same ISO Timestamp format you mentioned in your derivation. Make the source column a Timestamp data type and (if the sql doesn't automatically generate this) use the to_char function ...