Search found 53125 matches

by ray.wurlod
Fri Feb 08, 2008 2:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture Stage Warning
Replies: 4
Views: 3354

The message is only an alert, informing you that the non-key column's default attributes are being mapped to the output link. You don't need to worry about it. If you like, you can demote the message to informational using a local message handler.
by ray.wurlod
Fri Feb 08, 2008 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heap allocation failed
Replies: 5
Views: 2695

DataStage uses its own malloc(), not the standard UNIX one - it overloads the function. Be extremely careful making any assumptions about how malloc() works in a DataStage context. Indeed, it's better that you don't make any assumptions at all.
by ray.wurlod
Fri Feb 08, 2008 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing Oracle Error Code From Enterprise Stage
Replies: 1
Views: 651

Once you place a reject link on the Oracle Enterprise stage, DataStage will automatically manage writing sqlcode (the error code) to that reject link. Which errors are you claiming are not captured?
by ray.wurlod
Fri Feb 08, 2008 2:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sybase truncation error causing job failure
Replies: 4
Views: 2621

Please mark the thread as Resolved.
by ray.wurlod
Fri Feb 08, 2008 2:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Testing a hash, want to do a single lookup and write result
Replies: 2
Views: 853

Yes, if you need a reference input then you need a stream input in the Transformer stage. Consider using a Trans() function to lookup up the hashed file. To do this you will, however, need a VOC pointer to the hashed file. Trans("hashedfilename",keyvalue,field_number_to_return,"X&...
by ray.wurlod
Fri Feb 08, 2008 1:59 pm
Forum: General
Topic: DB2II apply job passing row data to DS job
Replies: 4
Views: 1736

... having first licensed SOA Edition of course, and learned all the WISD/WISL acronyms.
by ray.wurlod
Fri Feb 08, 2008 1:55 pm
Forum: Enhancement Wish List
Topic: Design Alignment on canvas
Replies: 2
Views: 1981

The only capability in DataStage is "snap to grid". The rest is up to you.
You can, of course, re-size stage icons to get your links always running vertically or horizontally, which makes them easier to label clearly.
by ray.wurlod
Fri Feb 08, 2008 3:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparison between Database and dataset
Replies: 13
Views: 2980

Take a look at the job score. Your Lookup stage generates a "composite operator" (two operators called LUT_CreateOp and LUT_ProcessOp). The first of these loads data from your table into a virtual Data Set and builds an index on it. The second actually performs the lookups, via the index, into the v...
by ray.wurlod
Fri Feb 08, 2008 3:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: profile stage in Datastage 8.0
Replies: 6
Views: 3381

ProfileStage is not a stage in DataStage, it's a separate product like AuditStage, MetaStage and QualityStage. As ltsaur notes, ProfileStage per se no longer exists; it is replaced with a tool called Information Analyzer which is mainly the old ProfileStage plus a small amount of the investigation c...
by ray.wurlod
Fri Feb 08, 2008 3:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Resetting a job
Replies: 13
Views: 3181

Your last sentence is completely erroneous - whether or not a job is multi-instance enabled has no bearing whatsoever on whether it can be reset successfully. To be reset successfully a job must simply be not in a runnable state and contain no quirks that prevent its being reset. DSPrepareJob() - th...
by ray.wurlod
Fri Feb 08, 2008 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version Controlling
Replies: 3
Views: 1060

As author, you will see Edit/Delete This Post in the menu.
by ray.wurlod
Fri Feb 08, 2008 3:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OPTIMIZATION
Replies: 5
Views: 1132

Yes, the way I suggested.

Premium membership is one of the ways that the hosting and bandwidth costs incurred by DSXchange are met. At less than 30c (Rs12) per day, it is definitely a worthwhile investment for anyone claiming to be a DataStage practitioner.
by ray.wurlod
Fri Feb 08, 2008 12:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OPTIMIZATION
Replies: 5
Views: 1132

Define "performance" in an ETL context.

Try writing to a text file, and using a customized sqlldr control file to load into Oracle from that. For example, get the buffer sizes right (rather than defaulting to 256 for every field), use parallel load capabilities, and so on.
by ray.wurlod
Fri Feb 08, 2008 12:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version Controlling
Replies: 3
Views: 1060

Please delete your duplicate post.

The only other ways to control job versions are:
(a) to change the version number manually at each edit
(b) to change the version number within the DSX file
(c) to "release" the job for production
by ray.wurlod
Fri Feb 08, 2008 12:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: In Datastage px Time Stamp issuse
Replies: 4
Views: 1225

Welcome aboard. The data type Timestamp is specified, in ISO 8601 and elsewhere, to contain seconds. If your data type must be Timestamp, you must live with the seconds. Even if your data type is Time you must live with the seconds. Wherever they are stored, you can elect not to display the seconds ...