Search found 53125 matches

by ray.wurlod
Mon May 02, 2016 9:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: handle multiple reject links in parallel jobs
Replies: 9
Views: 2714

Re: handle multiple reject links in parallel jobs

is there a way to let all the reject links output to a same place (single ds file or database table)? Run each through a Transformer stage to add any static information you might require and to produce a consistent format, then run them through a Funnel stage to consolidate them. OR Create a shared...
by ray.wurlod
Mon May 02, 2016 8:49 pm
Forum: General
Topic: Parallel job runs, but fails from sequence job
Replies: 5
Views: 2359

As others have noted, please check the job log of the sequence job. Report back the detail of the first Fatal message. Also report back the content of the first Fatal mesage in the log of the job itself when run under control of the sequence.
by ray.wurlod
Mon May 02, 2016 8:37 pm
Forum: General
Topic: Sequencer was entered, but never exited
Replies: 2
Views: 1292

As Craig notes, we really do need to see your design. In particular, is there any output from the Sequencer? If so, what activity type is on the other end of that link?
by ray.wurlod
Mon May 02, 2016 8:23 pm
Forum: IBM QualityStage
Topic: Match Designer - Environment Update
Replies: 2
Views: 4896

I saw something similar to this recently on version 11.5 (Engine on Windows). There was an underlying problem with the temporary tablespace in the database not being able to allocate sufficiently large page sizes. We created a new database with a bigger page size (8K) and automatic management of the...
by ray.wurlod
Sat Apr 30, 2016 3:44 pm
Forum: General
Topic: SSL Certificates for Cross Project Compare
Replies: 7
Views: 4407

Good thought, but they ARE managed by the same services tier. Will try the diffapicmdline utility next time I return to this problem.
by ray.wurlod
Fri Apr 29, 2016 3:47 pm
Forum: General
Topic: SSL Certificates for Cross Project Compare
Replies: 7
Views: 4407

Not yet. It's not high in my list of current priorities, but I'll get back to it some time.
by ray.wurlod
Thu Apr 28, 2016 5:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: import error and no default value
Replies: 2
Views: 3829

It should be obvious from the values in the error messages that the error is occurring in the first row and it's trying to read the column headings as data. This is because of a property in the Sequential File stage that has not been set properly. Let us know that you've found the property in questi...
by ray.wurlod
Thu Apr 28, 2016 5:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to abort a parallel job
Replies: 4
Views: 2608

@Craig It's not possible from a parallel Transformer, but it is possible from a BASIC Transformer stage.
by ray.wurlod
Thu Apr 28, 2016 5:35 pm
Forum: General
Topic: Pass space into Hive Config thru BSUB command
Replies: 4
Views: 3273

Maybe (just a guess) escape the space characters themselves?

Code: Select all

A\ B\ C
by ray.wurlod
Wed Apr 27, 2016 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with wrong surrogate keys
Replies: 7
Views: 3538

Create a job that has the Surrogate Key Generator stage downstream of an appropriate database Connector stage. A Surrogate Key Generator stage with an input link can be used to update the state file. Use an appropriate query to get the new initial value. SELECT MAX(SK) + 1 AS NEW_BASE_SK FROM tablen...
by ray.wurlod
Wed Apr 27, 2016 8:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with wrong surrogate keys
Replies: 7
Views: 3538

DataStage may get it wrong, but it's almost certain that there's a UNIQUE constraint in the database that will prevent surrogate key re-use. Perhaps you can re-initialise your state file from the database.
by ray.wurlod
Wed Apr 27, 2016 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Eliminating Carriage return Line feed characters
Replies: 7
Views: 7334

You say that the job fails in production. Are you implying that the same job does not fail in dev or test? If so, what is different about the production environment?
by ray.wurlod
Wed Apr 27, 2016 3:35 am
Forum: General
Topic: Subtract Hours from Current Timestamp
Replies: 7
Views: 3247

Click any of the links on my new home page which takes you to a public page on OneDrive. Download RayWurlodDateRoutines.dsx from there.
by ray.wurlod
Sat Apr 23, 2016 2:48 am
Forum: General
Topic: Abort job if the Before/After Subroutine fails
Replies: 6
Views: 3135

Code: Select all

sqlplus...
exit $?
by ray.wurlod
Wed Apr 20, 2016 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp issue in ODBC stage of Vertica Database
Replies: 3
Views: 1959

There is no need to ask the question via Private Message unless you are seeking to engage services on a professional basis.

What format string are you using with the TimestampFromString() function?