Search found 53125 matches

by ray.wurlod
Mon Jul 14, 2008 9:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORCHESTRATE step execution terminating due to SIGINT
Replies: 4
Views: 2671

What has changed between "previously" and "now"? "Nothing" clearly is not the correct answer.
by ray.wurlod
Mon Jul 14, 2008 9:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Files with varying columns
Replies: 7
Views: 2350

Not 100% sure whether that's true or not, but if it is you can put the Sequential File stage into a server Shared Container to make use of this particular functionality in a parallel job.

You might also investigate an approach using the Schema File property of the parallel Sequential File stage.
by ray.wurlod
Mon Jul 14, 2008 8:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine - can't use Environment Variables
Replies: 1
Views: 1172

Library search path is an environment variable.

The library path of a routine ought not to change (probably). Does the routine definition complain if you omit it, and rely on the shared library search path to find the routine at run time?
by ray.wurlod
Mon Jul 14, 2008 7:21 pm
Forum: IBM QualityStage
Topic: Handling Name with spl characters
Replies: 7
Views: 2146

You don't have to script anything - use QualityStage designer to design your input pattern override. You don't have to investigate - this step would, however, allow you to see what other patterns or text strings are in need of work. Typically you would, however, investigate the results of a standard...
by ray.wurlod
Mon Jul 14, 2008 5:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS error "Unable to save EditServ.impl.JobDefnImpl@nnnn
Replies: 6
Views: 4223

Someone tightened up file system permissions on the server?
by ray.wurlod
Mon Jul 14, 2008 5:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs running indefinately
Replies: 14
Views: 6249

Please explain what these environment variables do, and how you came to decide on these specific settings for them, so that we all might understand your resolution and why it may have worked.
by ray.wurlod
Mon Jul 14, 2008 5:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Derivation Expression fed from a Rules table
Replies: 6
Views: 1369

Quick, wasn't he (the Moderator)?!
by ray.wurlod
Mon Jul 14, 2008 4:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aggregator sort method issue
Replies: 19
Views: 12937

Stick them in a spreadsheet and add them there. What results do you get?
by ray.wurlod
Mon Jul 14, 2008 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 PLUGIN STAGE FOR PARALLEL JOB vs SERVER JOB
Replies: 1
Views: 1402

Welcome aboard.

There is none. Parallel jobs explicitly forbid a passive stage having an input link and an output link, because this obstructs pipeline parallelism.

In a parallel execution environment you must implement this design using two jobs; one to write and one to read.
by ray.wurlod
Mon Jul 14, 2008 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Files with varying columns
Replies: 7
Views: 2350

Define 105 columns. Create "missing columns" rules in the table definition for the Sequential File stage.
by ray.wurlod
Mon Jul 14, 2008 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: connecting to the specific datastage server
Replies: 2
Views: 1584

You do not connect to a DataStage server in version 8. You connect to Information Server (via port #9080 by default) where you are authenticated. If you are authenticated, the login dialog for Designer or Director offers a drop-down list of server/project pairs to which you can connect. Similarly Ad...
by ray.wurlod
Mon Jul 14, 2008 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aggregator sort method issue
Replies: 19
Views: 12937

That's why you got 216 rows out.
by ray.wurlod
Mon Jul 14, 2008 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage - int64 to String(19)
Replies: 7
Views: 4799

If you must create a Specification, it looks like

Code: Select all

OutCol:string[max=19]=InCol
by ray.wurlod
Mon Jul 14, 2008 3:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strange DML operation behavior in DB2
Replies: 2
Views: 1067

The issue is one of timing. Your approach will only work if you use auto-commit (rows/transaction = 1). Otherwise the insert may have been sent but not yet committed when the update is sent, so the update is rejected because the row has not yet been inserted.
by ray.wurlod
Mon Jul 14, 2008 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to specify the timestamp format for the field like this?
Replies: 5
Views: 1447

Welcome aboard. I don't know that there's a conventional format string for this timestamp format. I'd try reading it as VarChar and modifying it to a conventional timestamp format (adding 12 to the hours if the designator is PM, changing the decimal placeholder from ":" to ".", changing MDY order to...