Search found 53125 matches

by ray.wurlod
Mon May 18, 2015 3:57 pm
Forum: General
Topic: Abort job if the Before/After Subroutine fails
Replies: 6
Views: 3135

If your script returns a non-zero exit status, then ExecSH will pick that up and cause the job to abort. Source code for ExecSH can be found in the Routines branch of the repository. You can clone it and adapt the copy for your own specific purposes if desired.
by ray.wurlod
Mon May 18, 2015 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Full outer join gives more output record count than inputs
Replies: 1
Views: 2011

Because you have duplicate records. Each duplicate is joined to all its counterparts. Worst case, with M records on one input and N on the other, and only one key value, would be an output having M * N records.
by ray.wurlod
Mon May 18, 2015 12:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings when writing to an ODBC table with a schema
Replies: 3
Views: 3102

Are the updates actually happening?

If this is custom SQL can you try using ODBC-standard parameter markers (that is, "?" characters)?
by ray.wurlod
Mon May 18, 2015 12:23 pm
Forum: General
Topic: Can we install and Run V11.3 along with V8.1 in same server
Replies: 3
Views: 1404

You will need to check your 8.1 installation documentation to determine whether your particular version is tolerant of "itag" installations. If it is, then the answer to your question is "yes". I suspect, however, that 8.1 needs to be standalone.
by ray.wurlod
Sat May 16, 2015 3:15 am
Forum: General
Topic: Regarding new IADB analysis database
Replies: 2
Views: 1313

You can have a separate IA analysis database for every project if you wish. Just by providing appropriate (different) arguments for the scripts you should successfully create these databases.
by ray.wurlod
Sat May 16, 2015 3:13 am
Forum: General
Topic: DataStage: dsadmin createproject command
Replies: 13
Views: 5003

Actually, 9443 is the default port number for 11.3, in which you have to use https, as http is no longer supported.
by ray.wurlod
Fri May 15, 2015 2:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: oracle procedure with particular parameters
Replies: 4
Views: 3204

'M' is not a valid day of the week.

ORA-20000: -1846 - ORA-01846: not a valid day of the week ORA-06512
by ray.wurlod
Fri May 15, 2015 12:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing datasets
Replies: 1
Views: 816

What happens on the second and subsequent iterations? That is, how are you planning to handle the archive folder? I ask this because the data files of Data Sets are not stored a folder, as you seem to think. Only the descriptor file is stored at the pathname used in the Data Set stage. Do you plan t...
by ray.wurlod
Thu May 14, 2015 8:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing Deleted Rows from an Oracle Enterprise Database
Replies: 1
Views: 1122

You can direct the rows to another output link (for example to a text file) in the same job as they are sent to Oracle for deletion. The only "output" from create, update and delete operations is the number of rows affected, so you would not be able to capture data from "Oracle output...
by ray.wurlod
Thu May 14, 2015 7:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Recommended method to Extract and Load from source DB
Replies: 8
Views: 5786

I would tend to opt for Option B, with inter-process row buffering enabled.
by ray.wurlod
Thu May 14, 2015 7:05 pm
Forum: General
Topic: Sequence - Not triggering the next job
Replies: 3
Views: 1529

Possibly because the exit status of your overall command pipeline was other than zero. An OK trigger can only be fired if the exit status is zero.
by ray.wurlod
Thu May 14, 2015 7:04 pm
Forum: General
Topic: Sequence Job Trigger
Replies: 5
Views: 3625

The order of precedence is:
  1. a Failure trigger
    an Exception Handler
    automatic handling
    failure
That is, if an activity has a Failure trigger that fires, no call is made to the Exception Handler or any other mechanism. The Failure trigger takes precedence.
by ray.wurlod
Thu May 14, 2015 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Match and non Matching from Join Stage
Replies: 2
Views: 1528

1. Encase your "diagram" in Code tags and tidy it up so we can clearly understand what's happening.

2. Inform us how you are partitioning and sorting your data on the inputs to the Join stage.

3. Duplicates are OK with a join.
by ray.wurlod
Thu May 14, 2015 3:26 pm
Forum: General
Topic: Source Code Control - Version 9.1
Replies: 5
Views: 2215

Currently it does not.
by ray.wurlod
Wed May 13, 2015 3:59 pm
Forum: General
Topic: Insert Processing details to a table
Replies: 4
Views: 1005

DSODB is installed with version 9.x, but you still need to configure it (not least provide the user ID and password) in a couple of configuration files. This process is well documented in the manuals and in IBM Knowledge Center.