Search found 42189 matches

by chulett
Fri Nov 22, 2013 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help Required in Installing XML Adapter and CDC in 7.1
Replies: 3
Views: 3183

Re: Help Required in Installing XML Adapter and CDC in 7.1

nansekar wrote:Our requirement is to migrate a application from DS 7.1 to DS 7.1
Which one of those two numbers is incorrect?
by chulett
Thu Nov 21, 2013 4:30 pm
Forum: General
Topic: Trigger DS job from a table
Replies: 7
Views: 1266

Perhaps "the DS job" that needs to be triggered should be deployed as a web service?
by chulett
Thu Nov 21, 2013 3:18 pm
Forum: General
Topic: Datastage scheduler versus cron scheduling
Replies: 7
Views: 2710

... and does it rely on any underlying O/S functionality like cron or is it a "self contained" service?
by chulett
Thu Nov 21, 2013 10:08 am
Forum: General
Topic: Datastage scheduler versus cron scheduling
Replies: 7
Views: 2710

Mike wrote:The DataStage scheduler via the Director client utilizes cron / at behind the scenes.
I'm not sure that is still true in the 9.x release, can someone confirm / deny?
by chulett
Thu Nov 21, 2013 9:15 am
Forum: General
Topic: Extract of log file using DSGetLogEntry not working
Replies: 31
Views: 7284

I would (again) but you're basically ignoring everything I'm suggesting, so what's the point?
by chulett
Wed Nov 20, 2013 11:43 pm
Forum: General
Topic: Extract of log file using DSGetLogEntry not working
Replies: 31
Views: 7284

Another thing - you have a list of event ids. You can't simply use that in the for loop as the from and to values... it's a list after all. Count how many entries are in the list and then loop from 1 to Count and use the loop counter to pull the Nth event id from the list and then get the log entry ...
by chulett
Wed Nov 20, 2013 10:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp with Microsecond
Replies: 6
Views: 2788

So... you want to round to the nearest second?
by chulett
Wed Nov 20, 2013 10:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue when Importing Metadata from oracle table..
Replies: 11
Views: 3247

What characterset is each instance using?
by chulett
Wed Nov 20, 2013 5:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Testing for empty file condition in Server Job
Replies: 16
Views: 7449

The job itself won't care and will happily process an empty file. However, because no rows are flowing through the job you can't use a condition inside the job to abort it. What Andy posted is cleanest and makes what is going on much more obvious / visible to the casual observer. You could do someth...
by chulett
Wed Nov 20, 2013 2:47 pm
Forum: General
Topic: Extract of log file using DSGetLogEntry not working
Replies: 31
Views: 7284

There's nothing more for me to post. Right now I'm suggesting that as a debugging aid you add calls to DSLogInfo() to your routine to see the data you are working with. Write the LogList value to the log after you fetch it. Write vEventDetail to the log after you fetch it. Etc. They'll help you figu...
by chulett
Wed Nov 20, 2013 8:19 am
Forum: General
Topic: Passing parameter with spaces to Execute Command Stage
Replies: 12
Views: 5023

See if this helps.
by chulett
Wed Nov 20, 2013 8:17 am
Forum: General
Topic: Extract of log file using DSGetLogEntry not working
Replies: 31
Views: 7284

Breadcrumbs. Where are the DSLogInfo calls? :?

Your for loop is broken. You can't step from X to X where X is a list of event numbers.
by chulett
Tue Nov 19, 2013 9:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key Generator - Database Sequence (Oracle) Error
Replies: 3
Views: 1716

So... not a Server job then. Off you go to the PX forum.
by chulett
Tue Nov 19, 2013 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort is failing
Replies: 3
Views: 2137

Your sort stage worked just fine, it's just the expectation of getting sorted output from the hashed file that was incorrect. Due to the destructive nature of hashed file key handling (duplicates are not allowed and last one in survives) the order records are written to the hashed file can be critic...