Search found 53125 matches

by ray.wurlod
Mon Sep 28, 2015 6:57 pm
Forum: General
Topic: Audit New Parm
Replies: 7
Views: 2304

Nothing to prevent you layering some kind of business process management/governance over the top though.
by ray.wurlod
Mon Sep 28, 2015 6:55 pm
Forum: General
Topic: Running multiple instance of a job
Replies: 3
Views: 1536

Re: Running multiple instance of a job

I want to run the job for 10 different tables at the same time. Why? Aren't you concerned that you will overload (a) machine resources and (b) database licensed connections? To run genuinely simultaneously the job requests must be executed asynchronously, for example by using nohup backgrouound pro...
by ray.wurlod
Sat Sep 26, 2015 3:24 pm
Forum: General
Topic: Audit New Parm
Replies: 7
Views: 2304

The operating system can show date/time accessed and date/time modified. Any save counts as a modification.
by ray.wurlod
Sat Sep 26, 2015 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FIELD function
Replies: 5
Views: 2007

One of the services I perform is a DataStage health check. You would be surprised how many functions are unnecessarily multiply evaluated.
by ray.wurlod
Fri Sep 25, 2015 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FIELD function
Replies: 5
Views: 2007

This is a case where I'd use stage variables to avoid unnecessary processing (in particular splitting the comma-delimited string more than once). For example: svFamilyName <-- Field(InLink.FullName, ",", 1, 1) svGivenNames <-- Field(InLink.FullName, ",", 2, 1) svFirstName <-- Fie...
by ray.wurlod
Fri Sep 25, 2015 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid character(s) ([x8D]) found converting string
Replies: 1
Views: 1562

(1) Somewhere in your data the byte sequence 0x8D is being found, which is not valid for ASCL_MS1252.

(2) Not really possible to tell. Disable operator combination and run the job again so that you can determine which actual stage is throwing the error.
by ray.wurlod
Fri Sep 25, 2015 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: X Connector to Y Connector migration?
Replies: 5
Views: 2292

It won't happen. The connector properties are too different from each other to warrant trying to be generic. (That's what ODBC is for.)
by ray.wurlod
Fri Sep 25, 2015 3:36 pm
Forum: General
Topic: Datastage Director Scheduler issue
Replies: 9
Views: 3505

Although unrelated, you should run fsck fairly soon.

Check that the user is recorded in both the cron.allow and at.allow files.
by ray.wurlod
Fri Sep 25, 2015 3:34 pm
Forum: General
Topic: Audit New Parm
Replies: 7
Views: 2304

I don't think so. You could estimate it by looking at the last modified date/time of the DSParams file in the project directory.
by ray.wurlod
Fri Sep 25, 2015 3:32 pm
Forum: General
Topic: Error adding to schedule: Access is denied
Replies: 3
Views: 1730

Get your Windows administrator to configure the user who executes DataStage jobs to be permitted to use the AT scheduler.
by ray.wurlod
Thu Sep 24, 2015 8:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Server Deadlock Error
Replies: 11
Views: 5191

That suggests that you're sending the same key from separate nodes at the same time which, in turn, suggests that your partitioning algorithm is not properly specified (the key, the whole key and nothing but the key).
by ray.wurlod
Thu Sep 24, 2015 5:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameterize Fastname in APT Config file
Replies: 2
Views: 1979

No. The configuration file is simply read when job execution is requested. No resolution of parameters or shell techniques is supported.

You could, of course, script something to rewrite the configuration file but, since it's only ever changed once per server, why would you bother?
by ray.wurlod
Wed Sep 23, 2015 5:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Server Deadlock Error
Replies: 11
Views: 5191

What other Oracle processes are competing for access to the pertinent table(s), whether from DataStage or otherwise?
by ray.wurlod
Wed Sep 23, 2015 5:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't read a seq. file created in a server job in a Px job
Replies: 9
Views: 3227

What is the default date format for parallel jobs? (Find out using the Administrator client.)

Have you overridden this default at project level or in the job itself?

Use a reject link on the reading Sequential File stage to determine what's actually being read.
by ray.wurlod
Wed Sep 23, 2015 5:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Information Server DataStage operator logic error
Replies: 9
Views: 10121

That error will disappear when you resolve the job timeout error. The operator logic error simply informs you that it was a DataStage engine (Orchestrate) operator that detected the problem.