Search found 42189 matches

by chulett
Thu Dec 06, 2007 11:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Running Logic
Replies: 40
Views: 5322

Remove the Terminator. :?

If for some reason you still need the link but need to to do 'nothing', send it to a Sequencer.
by chulett
Thu Dec 06, 2007 10:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dssearch primary commands
Replies: 4
Views: 1649

Yes, you can certainly use SQL to get the category of a job if you prefer:

Code: Select all

SELECT CATEGORY FROM DS_JOBS WHERE NAME = 'YourJobName';
by chulett
Thu Dec 06, 2007 10:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Acheive Cartisian O/P by joining File,table in Transformer.
Replies: 2
Views: 866

Re: Acheive Cartisian O/P by joining File,table in Transform

I didn't mention the database answer because of this:

thiru wrote:I do not want to use a Merge stage or load the sequential file into database and perform a query

:wink:
by chulett
Thu Dec 06, 2007 9:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file error
Replies: 6
Views: 2289

Ummm... Step 2? :?
by chulett
Thu Dec 06, 2007 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database vs DS metadata
Replies: 4
Views: 1236

Yes and we leave it that way, handling all Oracle DATE fields as Timestamps in DataStage. This gives one explicit control over the time portion and between the generated SQL in the OCI stage with a 'standard' set of Oracle date handling routines in place you will never have a problem handling them a...
by chulett
Thu Dec 06, 2007 8:43 am
Forum: General
Topic: Bouncing DataStage Server Edition - frequency and releasing
Replies: 11
Views: 3866

We're on H-PUX here and 'rebooting' DataStage is a pretty rare thing, and is only done 'when needed'. And that would tyypically be when things get really jammed up and we start seeing the behaviour Ogmios mentioned.

I can only remember needing to do that about 3 times in the last 4 years. [shrug]
by chulett
Thu Dec 06, 2007 8:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Group by Date column
Replies: 11
Views: 1953

Are any of the dates null? All it takes is one null coming into the Aggregator to get a null result out the other end.
by chulett
Thu Dec 06, 2007 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Acheive Cartisian O/P by joining File,table in Transformer.
Replies: 2
Views: 866

Only the ODBC and UV stages support 'multi-row result sets' - can you use one of them?
by chulett
Thu Dec 06, 2007 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need schedule the datastage job on every month first sunday
Replies: 5
Views: 3274

Create a Sequence job and schedule it to run every Sunday via Director. Create and run a routine first that checks to see if the current Sunday is the first Sunday in the month and only trigger subsequent jobs if the routine says to. We've done things like this in the past and they are fairly easy t...
by chulett
Thu Dec 06, 2007 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file error
Replies: 6
Views: 2289

Using $ENV in the Administrator sets it to the current value of the variable in 'the environment', which can include NULL if it is not currently set. Using it allows you to define it for DataStage without immediately changing the value in every existing job. So, to not change the value anywhere but ...
by chulett
Thu Dec 06, 2007 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of transformer stage
Replies: 15
Views: 3678

These kind of problems are usually Oracle client related, certain releases are more 'buggy' than others and can seem to be working fine until one job triggers it. However, other factors can come into play. So...

What operating system?

What exact version of the Oracle client are you using?
by chulett
Thu Dec 06, 2007 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: encode stage command line
Replies: 10
Views: 7208

A couple of questions...

Have you read the chapter on the stage in the Parellel Job Designer's Guide? What are you attempting to 'encode' or planning on using the stage for?
by chulett
Wed Dec 05, 2007 10:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Step by step instructions on bouncing DataStage
Replies: 5
Views: 2118

As Ken notes, the idea that you have no 'softcopy manuals' is simply incorrect. You can access them from the Start menu or you can drill down to where they live via Windows Explorer. They are all are in pdf format in the 'Docs' directory under your main client installation.
by chulett
Wed Dec 05, 2007 5:51 pm
Forum: General
Topic: Deployment without using dierector
Replies: 11
Views: 2250

4-3-5
by chulett
Wed Dec 05, 2007 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing parameter to routine
Replies: 2
Views: 682

Because you have it as a literal - inside quotes. How about this instead? strshell='' ToFile= '' strshell = SOURCE_FILE_DIR: '/recordcount.sh ' : TABLE_NAME Call DSExecute("UNIX", strshell, ToFile, SystemReturnCode) If SystemReturnCode = 1 Then Ans=1 Call DSLogInfo("Job Ab...