Search found 53125 matches

by ray.wurlod
Mon Mar 28, 2011 7:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Routine to check whether the file exist or not
Replies: 4
Views: 2510

The OpenSeq statement will take its Else clause if the file does not exist. Note that the file will be open for writing and locked - you will still need a CloseSeq statement once you have performed your test. You could also call DSExecute to execute a UNIX test -f pathname command (yes, even though ...
by ray.wurlod
Mon Mar 28, 2011 7:17 pm
Forum: General
Topic: List of Command Interface commands
Replies: 1
Views: 1213

Possibly the best place (most comprehensive list) is the UniVerse manuals - also available through IBM web site - although these don't give the DataStage-specific commands
by ray.wurlod
Mon Mar 28, 2011 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: A simple query
Replies: 1
Views: 941

Only if you want to. It's not necessary.
by ray.wurlod
Mon Mar 28, 2011 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Upsert failure in Oracle Connector Stage
Replies: 5
Views: 4048

You are violating an Oracle constraint. Your design must prevent this from occurring. On one node what you have done may work, but what happens when the duplicates are on separate nodes?
by ray.wurlod
Mon Mar 28, 2011 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_nlsmap() - BCI NLS input mapping error
Replies: 6
Views: 5979

Did you trim Char(160)?
by ray.wurlod
Mon Mar 28, 2011 4:35 pm
Forum: General
Topic: Difference between Cluster & Grid Architecture
Replies: 7
Views: 13883

Data Set and File Set descriptor files include the configuration with which they were written. When it comes time to read them, a virtual "read only" descriptor is created from this. (You can accomplish the same thing using the -x option with orchadmin command.)
by ray.wurlod
Mon Mar 28, 2011 4:34 pm
Forum:
Topic: Anyone using BG and MDW as Corporate metadata tool?
Replies: 7
Views: 6193

We've just completed upgrading BioGrid from 8.1 to 8.5. They have a comprehensive Business Glossary full of medical terms, since they're a medical research company. Thus far, they don't use MDW at all, but we may be able to wean them onto it as more and more research institutions become part of thei...
by ray.wurlod
Mon Mar 28, 2011 1:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_nlsmap() - BCI NLS input mapping error
Replies: 6
Views: 5979

The character on the end is 0xA0 (ASCII 160). See if you can work out how it got there. You should be able to trim it off.
by ray.wurlod
Mon Mar 28, 2011 1:15 pm
Forum: General
Topic: Run all the jobs concurrently
Replies: 10
Views: 2864

They START in serial fashion - such is the nature of sequence (special case of server job). But they run simultaneously. Even if you create your own job control routine with PHANTOM statements, you're never going to do better than that without using a multi-threaded scheduler.
by ray.wurlod
Mon Mar 28, 2011 11:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Header & Footer is missing
Replies: 9
Views: 2363

Go back to your orignal design and add a Reject link to the Sequential File stage that reads the file. This will capture the header and trailer rows and begin a stream of processing in which you can do what you like, for example re-parse with a Column Import stage.
by ray.wurlod
Mon Mar 28, 2011 11:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DAtastage job not running
Replies: 2
Views: 1350

If you're on UNIX (as stated) Task Manager isn't going to help - you'd need ps -ef command, probably with grep. Add the environment variable that reports job startup to work out what's happening. Also purge old entries from the &PH& directory. Think about changing your design so that all sta...
by ray.wurlod
Mon Mar 28, 2011 11:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can aggregator stage be of some help
Replies: 21
Views: 7860

Fork join.

Probably two nested fork joins.
by ray.wurlod
Mon Mar 28, 2011 11:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Send a notification mail when count mismatches
Replies: 2
Views: 1359

Why bother with the "Y" and "N"?

Code: Select all

If Count1 <> Count2 Then Call DSSetUserStatus(arg) Else NULL
by ray.wurlod
Mon Mar 28, 2011 11:20 am
Forum: General
Topic: Need to Get an Mail Notification from ETL Job
Replies: 9
Views: 3136

Create a routine that invokes DSSendMail().
by ray.wurlod
Mon Mar 28, 2011 11:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: logic implementation
Replies: 4
Views: 1618

But have you learned anything (apart from begging for solutions)?