Search found 42189 matches

by chulett
Thu Feb 07, 2008 8:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting warning limits in a before-job routine?
Replies: 9
Views: 2531

As you've found by searching the forums, doing this in a 'Before job' routine is too late as the job has already started. And there's nothing to set from the Directory other than a global default for jobs run from that instance of the Director. Your only option that I see is custom job control code,...
by chulett
Thu Feb 07, 2008 7:55 am
Forum: General
Topic: hexatridecimal or base 36
Replies: 13
Views: 6132

I would wager you'll need to roll your own conversion.

Before reading this, I thought it was a typo as 3x16 is 48 not 36... so, sexatrigesimal? :lol:
by chulett
Thu Feb 07, 2008 7:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unique constraint violation
Replies: 4
Views: 4829

Why kind of help do you need? Stop sending multiple records with the same values in the unique indexes. Hashed files should be used to validate your processing and drive the inserts v. updates.
by chulett
Thu Feb 07, 2008 7:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage of secure shell cient within the Datastage sequence
Replies: 2
Views: 761

Short answer is you'll need to script the scp and execute the script from within your job control - Sequence, After Job, etc.
by chulett
Thu Feb 07, 2008 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: want to the job sequence repeatedly until particular time
Replies: 6
Views: 1495

Do the looping in another Sequence that calls this Sequence inside the Start/End loop stages. A custom routine can exit the loop at the proper time.
by chulett
Thu Feb 07, 2008 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture the output in DSExecute command
Replies: 4
Views: 1822

It should be logged, double-click on the entry. Worst case, use DSLogInfo to write something specific.

ps. 'wc -l <filename>' will work fine, no need to pipe cats.
by chulett
Wed Feb 06, 2008 11:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delemeter , ans required
Replies: 3
Views: 798

Make sure the file gets created properly... the salary information will be valid only if quoted - "10,000" for example, or have those inner commas removed.
by chulett
Wed Feb 06, 2008 10:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling BASIC routine-After job subroutine
Replies: 6
Views: 1498

Did you create them as 'Before/After' subroutines?
by chulett
Wed Feb 06, 2008 10:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling BASIC routine-After job subroutine
Replies: 6
Views: 1498

:? You just repeated your question, virtually verbatim, from the first post. If neither reply actually helps, you need to rephrase your question.
by chulett
Wed Feb 06, 2008 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: creating a sequential file with ^] as a column delimiter
Replies: 3
Views: 1386

Re: how do enter the ESC character in the sequential file st

madog wrote:Do i just enter 027 under the delimiter section?

Yes, that's exactly what he means.
by chulett
Wed Feb 06, 2008 10:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling BASIC routine-After job subroutine
Replies: 6
Views: 1498

And in case you already have one of those and want to call a routine from inside it, search the forums for DEFFUN and all will be revealed. :wink:
by chulett
Wed Feb 06, 2008 8:53 am
Forum: General
Topic: Configuration File
Replies: 4
Views: 4068

Re: Configuration File

Get a bigger boat?

parameswar wrote:Since it is 4 CPU, configuration file contains 4 Node

:? CPU != Node.
by chulett
Wed Feb 06, 2008 8:20 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Version controlling
Replies: 2
Views: 1878

First suggestion would be to post in the proper forum. Hint - this isn't it. The 'General' forum would be most appropriate.
by chulett
Wed Feb 06, 2008 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SDKSequences access issue
Replies: 3
Views: 1087

Another approach - run the sdk routine once such that it creates the SDKSequences hashed file properly in the project, then replace it from backup. Or do the original creation 'using Account Name'.
by chulett
Wed Feb 06, 2008 8:12 am
Forum: General
Topic: Start Loop - infinite loop
Replies: 11
Views: 5501

Don't build an 'infinite' loop?