Search found 53125 matches

by ray.wurlod
Wed Dec 01, 2004 2:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can Server Routines take arrays as Input Parameters?
Replies: 4
Views: 1139

The technical answer to the original question is yes. The architecture permits routine arguments to be (dimensioned) arrays. And how this can be accomplished is to be found in the DataStage BASIC manual. However, neither the editing controls for routines nor the calling mechanisms within DataStage a...
by ray.wurlod
Wed Dec 01, 2004 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join heterogenous data
Replies: 13
Views: 5478

Welcome aboard! :D Since this is a server job, you really should have posted it on the server job forum. The most obvious approach would be to load the contents of the text file into a hashed file with two key columns and no non-key columns. The job to isolate the differences then extracts rows from...
by ray.wurlod
Wed Dec 01, 2004 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job routines
Replies: 3
Views: 2031

DS routines don't apply to parallel jobs.

The closest you can get are operators (buildops and custom ops).

Read about these in Chapter 55 of the Parallel Job Developer's Guide (chapter number is correct for version 7).
by ray.wurlod
Wed Dec 01, 2004 2:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log files of a Datastage Job
Replies: 21
Views: 28485

You can create a DataStage job that retrieves the log information using the metadata I supplied to retrieve using either a UV stage or a hashed file stage. If you use a hashed file stage, the key column should be called AT.ID rather than @ID. Either stage type can constraint on any column, in the us...
by ray.wurlod
Wed Dec 01, 2004 12:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine gets locked
Replies: 12
Views: 3230

If DataStage had been restarted, all locks are released. If your server has the DataStage deadlock daemon (dsdlockd) running, it will clean up locks held by defunct processes. An Administrator might also have released the lock that was held on the routine in order to perform an export of the project.
by ray.wurlod
Tue Nov 30, 2004 11:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log files of a Datastage Job
Replies: 21
Views: 28485

Hashed file is a method of implementing database tables in DataStage, UniVerse, UniData and other databases. Columns in the log files are: @ID Numeric event identifier (or "//..." for control records) TYPE Enumerated severity level of message WAVE.NO Internal number to identify run...
by ray.wurlod
Tue Nov 30, 2004 11:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in lookupstage
Replies: 2
Views: 1211

Read the chapter on the Lookup Stage in the Parallel Job Developer's Guide and you will learn about how vital it is that some key is specified for the Lookup Stage to use.
by ray.wurlod
Tue Nov 30, 2004 11:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Exceptions in Job
Replies: 1
Views: 1024

As many as you can dream up CHECK, UNIQUE, FOREIGN KEY (and other) constraints for in the target table! :twisted:
by ray.wurlod
Tue Nov 30, 2004 11:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequencer
Replies: 10
Views: 4152

Since the job sequence is a DataStage job in its own right it, too, has job parameters, which you edit in the usual way in the usual location. Having done that, when filling in the parameters for a job (or job sequence) specified in a Job Activity you can click on "Insert Job Parameter" to be presen...
by ray.wurlod
Tue Nov 30, 2004 8:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum of Effective Date
Replies: 3
Views: 1048

Use generated SQL. Edit the derivation column in the grid of column definitions so that it contains the requisite MAX function. View the SQL to ensure that the result is what you desire (you may also need to add a GROUP BY clause on the Selection tab's Other Clauses field).
by ray.wurlod
Tue Nov 30, 2004 8:22 pm
Forum: IBM QualityStage
Topic: umask in Quality Stage
Replies: 10
Views: 5273

The server process (qsserv) are geared for automatic startup, so are forked by the init process (pid 1), which runs as root. Chances are that the root umask is being propagated. Need to investigate where qsserv or qsadm umask can be changed. The ipe.env.sh file in the $QSHOME/Projects/projname direc...
by ray.wurlod
Tue Nov 30, 2004 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using the Folder stage
Replies: 11
Views: 2779

I normally use /tmp/ignore_me (just in case) but it never gets written to.

You can of course use a directory in the Filter command, for example

Code: Select all

cat /dir1/dir2/*
and you can use whatever wildcard is relevant to your particular purpose, not just "*".
by ray.wurlod
Tue Nov 30, 2004 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Project not accessible any more
Replies: 2
Views: 1206

Enter dssh in the $DSHOME directory. Then SELECT * FROM UV.ACCOUNT; This will report where the DataStage Engine believes your DataStage projects to be. If this is incorrect, update the PATH column in this table. But that's not all you have to do. Next SELECT * FROM UV_SCHEMA; This will report where ...
by ray.wurlod
Tue Nov 30, 2004 3:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequencer Input/Output
Replies: 2
Views: 1270

A Sequencer (which is a component in a job sequence) can, and usually does, have multiple inputs. Its output fires depending on the Sequencer's Any/All properties when its input triggers have fired. It is permissible to have multiple output triggers from a Sequencer. However all are governed by the ...
by ray.wurlod
Tue Nov 30, 2004 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Req for list of possible values and descrip for Job codes
Replies: 7
Views: 4782

I believe you are seeing exit status of dsjob , or exit status of osh (since you're running parallel jobs). The exit codes in JOBCONTROL.H were originally intended for server jobs. There is an expanded list of error codes in chapter 57 of the Parallel Job Developer's Guide but it does not include th...