Search found 42189 matches

by chulett
Mon Nov 03, 2008 2:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adding New Job Parameter from PX routine
Replies: 9
Views: 3306

OK... you want a unique table name, but unique how? Not sure what "per call" means, so - unique per job? Per run? In other words, just how unique does this need to be.
by chulett
Mon Nov 03, 2008 1:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adding New Job Parameter from PX routine
Replies: 9
Views: 3306

How about explaining in detail the problem you are trying to solve so that people can help you find a proper solution?
by chulett
Mon Nov 03, 2008 11:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQLAllocHandle
Replies: 3
Views: 1479

:idea: When you have a problem, start your own thread, don't run around and jump on anything you can find that's similar. That way you can post *your* particulars.
by chulett
Mon Nov 03, 2008 10:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DateFromDaysSince function
Replies: 4
Views: 2906

In other words - sure, as long as you (or someone else) writes them. :wink:
by chulett
Mon Nov 03, 2008 9:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DateFromDaysSince function
Replies: 4
Views: 2906

DateFromDaysSince is a parallel function.
by chulett
Mon Nov 03, 2008 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling a java program through datastage
Replies: 4
Views: 1448

Sure, if you need to leverage Java inside the job, record by record. Not sure how much it would help 'after job', but still...
by chulett
Mon Nov 03, 2008 8:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hardware Configuration
Replies: 4
Views: 1353

Re: Hardware Configuration

vasubabu wrote:I need to know the Datastage server & client hardware configuration to process 10 million records.

There's no such thing. Way too many variables specific to your requirements, sources, etc.
by chulett
Mon Nov 03, 2008 7:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge Issue
Replies: 1
Views: 719

:? What stage is this from? Please post (copy/paste) the complete unedited message from the log.
by chulett
Mon Nov 03, 2008 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: scheduling jobs using Director
Replies: 10
Views: 2275

Of course, the next question is why was it missing? :?

Please mark your post as Resolved using the button at the top of the screen.
by chulett
Mon Nov 03, 2008 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Notification
Replies: 2
Views: 916

Right, an O/S command or a custom routine to check to see if a file is empty or not can be used, or a DSGetLinkInfo check for zero records could be done.
by chulett
Sun Nov 02, 2008 10:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture Unix error using exception handler
Replies: 3
Views: 1328

Branch to a Terminator stage in that case.
by chulett
Sun Nov 02, 2008 5:52 pm
Forum: General
Topic: Hi- To find the no of mondays in a given month
Replies: 14
Views: 3882

Worked fine for me, what O/S are you running?
by chulett
Sun Nov 02, 2008 1:03 pm
Forum: General
Topic: Information
Replies: 14
Views: 3163

Pretty natural assumption when asking for "5 differences" rather than "some differences" or "the difference"... very quiz/interview like.
by chulett
Sun Nov 02, 2008 1:02 pm
Forum: General
Topic: Hi- To find the no of mondays in a given month
Replies: 14
Views: 3882

:D Very nice. For HP-UX (and perhaps others) it would need to be:

Code: Select all

cal 1 2008 |cut -c 4-5 |grep "[0-9]" |wc -l 

Now just run a year or more's worth into a hashed file and you'd be all set.