Search found 53125 matches

by ray.wurlod
Fri Feb 29, 2008 3:36 pm
Forum: General
Topic: Problem with execute command activity in sequence job.
Replies: 9
Views: 4750

Job sequences only ever run sequentially, and only ever on the DataStage server machine itself, not on any other node in an MPP or grid environment. That's because a job sequence is really a special case of a server job. You can, of course, create parallel streams of processing in a job sequence, bu...
by ray.wurlod
Fri Feb 29, 2008 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Gaps(Holes) in surr_key generated by Surr_Key_Gen stage
Replies: 5
Views: 1688

One solution would be to force the entire job to execute sequentially. Which defeats the purpose of having this parallel engine and is, as others have noted, unnecessary. Then again, for only 10,000 rows it would probably perform adequately.
by ray.wurlod
Fri Feb 29, 2008 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file text binary (unix to ZOS)
Replies: 10
Views: 7029

What happens if you use an unsigned data type in DataStage? (I suspect it may be leaving a space for the sign character, though why this would accumulate I have no idea.)
by ray.wurlod
Fri Feb 29, 2008 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can a single DB Connectn be used in multiple parallel jobs?
Replies: 8
Views: 1972

Yes. The whole point of a Connector is so that you can have a pre-tested, re-usable component. <amusing anecdote> When this object was proposed marketing came up with the name "frictionless connector". The adjective was dropped when some people started referring to it as the KY Jelly stage. </amusin...
by ray.wurlod
Fri Feb 29, 2008 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stopped but status is showing as running
Replies: 1
Views: 767

The Monitor shows the status of stages, not of the job. The job itself may still be running, waiting for the sort to complete. To get the last-recorded status of the job, use Status view in Director. To find out how far the job got, use Log view in Director. If the job had been stopped (for example ...
by ray.wurlod
Fri Feb 29, 2008 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage type BBB being accessed by another user
Replies: 3
Views: 1098

It usually means exactly what it says - someone else (or even another session from your client) has the stage open, either in a Monitor or in the Designer. Its record in the Repository database is therefore locked.
by ray.wurlod
Fri Feb 29, 2008 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filtering on contents of Integer field
Replies: 5
Views: 1248

Zero-based in Modify stage, one-based in Transformer stage.

This is because they wanted the Transformer stage to use BASIC-like expressions, which the compiler would translate into C constructs.
by ray.wurlod
Fri Feb 29, 2008 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can all basic functions be used in the Transformer.
Replies: 7
Views: 1299

Sometimes, when asked by Dennis to do so. This class is offered by DSXchange as another mechanism to fund the site's costs. Contact Dennis (mailto:editor@dsxchange.com) for more information about when it is next to be run.
by ray.wurlod
Fri Feb 29, 2008 2:48 pm
Forum: General
Topic: Lookup help or Join
Replies: 14
Views: 3875

Then uncheck the Range check box, look up the max value, and perform the comparison in an expression in a Transformer stage or Filter stage.
by ray.wurlod
Thu Feb 28, 2008 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: zero output as 0.00
Replies: 5
Views: 1754

Numeric data are stored in binary format, you can not affect their display. You need to convert to string to have any control over the display format.
by ray.wurlod
Thu Feb 28, 2008 2:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date convertions
Replies: 3
Views: 1373

Are you being interviewed, or setting up a "prepare for interview" site?
:roll:
by ray.wurlod
Thu Feb 28, 2008 2:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Seq
Replies: 4
Views: 1183

Was on a ten hour flight with no internet access. :(
by ray.wurlod
Thu Feb 28, 2008 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can all basic functions be used in the Transformer.
Replies: 7
Views: 1299

Only the functions in the drop-down list are available. Not all BASIC functions have equivalents in the parallel Transformer stage. In particular there is no equivalent of Oconv(), Iconv() or Fmt().
by ray.wurlod
Thu Feb 28, 2008 2:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Case expression?
Replies: 4
Views: 1184

Wherever you can use an expression; includes Transformer stage but also expressions in job sequences (though "input column") takes on a different requirement there) and within routines.
by ray.wurlod
Thu Feb 28, 2008 2:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting and Updating the same table
Replies: 7
Views: 1760

Wrap your design in Code tags to make it easier to see what's happening. You probably have not committed the insert until the end of the job. What is your rows/transaction setting?