Search found 42189 matches

by chulett
Sun May 11, 2008 7:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencer Conditional flow not happenening
Replies: 6
Views: 1566

Field Marks in the dynamic array output. Try either:

Code: Select all

StageName.$CommandOutput<1> > 0

or

Code: Select all

Convert(@FM,"",StageName.$CommandOutput) > 0
by chulett
Sun May 11, 2008 7:45 am
Forum: General
Topic: DataStage Server Job Internal Components
Replies: 3
Views: 964

Google would answer your questions, however...

ENU is the official abbreviation for "English" just like JPN is used for Japanese, etc.

Xalan and Xerces support XSLT and XML parsing / manipulation.
by chulett
Sun May 11, 2008 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: log files
Replies: 16
Views: 5961

Re: Log table

veera24 wrote:can any one explain me how to go to Administrator command window

Okay... Administrator / Projects / <select project> / Command.
by chulett
Sun May 11, 2008 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with International Characters
Replies: 9
Views: 4682

veera24 wrote:I got the fatal error as "Abnormal Termination error cos of NLS".

I doubt any error message uses "cos". You'd need to post the complete / unedited log message for anyone to provide proper help.
by chulett
Sun May 11, 2008 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get job details from GetJobInfo for given jobname
Replies: 10
Views: 7197

Use DSJ.ME if the routine is querying the current job. Or use DSAttachJob (and DSDetachJob) to establish a handle to another job, then use that handle in your DSGetJobInfo call.
by chulett
Sun May 11, 2008 7:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get job details from GetJobInfo for given jobname
Replies: 10
Views: 7197

The online help lists all valid InfoType values for DSGetJobInfo regardless of the handle. Job Name is retrieved using DSJ.JOBNAME for example. No clue where you got J_PRGM_STATUS from. :?
by chulett
Sat May 10, 2008 6:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hashed file
Replies: 9
Views: 2213

[Thumbs][/Up]
by chulett
Sat May 10, 2008 6:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with single quote in Job parameter.
Replies: 16
Views: 17445

How are you setting this? The 'not appropriate' problem usually comes from @FM characters in captured command output.
by chulett
Sat May 10, 2008 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence
Replies: 8
Views: 2520

Read the help for Sequence jobs and Checkpoint Restarting. Sequence jobs need to Abort and show 'Aborted/Restartable' in order to do what you want. Master and failed Sub both.
by chulett
Sat May 10, 2008 8:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hashed file
Replies: 9
Views: 2213

/rul? :wink:
by chulett
Sat May 10, 2008 8:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence
Replies: 8
Views: 2520

Your words: "I have to parametrize this". Get rid of UtilityRunJob, you don't need it and it unnecessarily complicates what you need to do. Use Job Activity stages and all of the 'restart' features the tool offers, it will then all happen automatically for you and you can reset the segments you need...
by chulett
Sat May 10, 2008 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence
Replies: 8
Views: 2520

Why do you 'have' to parameterize this? Seems to me there's as much (or more) effort involved in creating and setting up the use of the parameter as there is in simply resetting the 'Master JS' from the Director manually once in a blue moon. [shrug]
by chulett
Sat May 10, 2008 8:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: variable to get DataStage Home directory path
Replies: 8
Views: 6899

Or perhaps you could do the same thing dsenv does:

Code: Select all

cat `./dshome`
by chulett
Fri May 09, 2008 9:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC reliability
Replies: 3
Views: 1880

Who cares if it generates 'duplicate' values within your data? All you care about is, if any aspect of the data changes, does the new CRC value differ from the old CRC value. In my mind, Ray's 'false positive' is the chance that the values in a single record would change and still manage to generate...
by chulett
Fri May 09, 2008 9:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CONCAT timestamp
Replies: 9
Views: 2915

Not sure, but for some reason they wanted to drop the seconds from the timestamp as well so you can't just put the two pieces together, even without the microseconds. However, thinking about it, it can be made even simpler: Convert(":- ","",Arg1[1,16]:Arg2) Do one substri...