Search found 53125 matches

by ray.wurlod
Tue May 23, 2006 8:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: deleting dataset
Replies: 6
Views: 1326

No. That only removes the control file, not the actual data files on each partition. You need to use the orchadmin utility (with its rm option), or use the Data Set Management utility within the Manager client.
by ray.wurlod
Tue May 23, 2006 6:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe - Impact of adding additional columns to table
Replies: 5
Views: 1420

Yes. Even though UV stage identifies columns by name, the underlying engine still must use field-number-based navigation. It's akin to using partial table information in other database stages; the columns you don't name aren't accessed. Therefore adding columns to the table will not affect existing ...
by ray.wurlod
Tue May 23, 2006 6:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Custom Routine in Generating a Sequence Number
Replies: 7
Views: 1684

Don't re-invent the wheel. there are already routines supplied with DataStage for performing this task. They're part of the SDK, under the Key Management category of the Routines branch.
by ray.wurlod
Tue May 23, 2006 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'packaging' jobs
Replies: 1
Views: 928

Yes and no. The term DataStage uses is "export", which creates a pure text image (DSX or XML format). When imported on the other server, this resolves into the appropriate structures within the DataStage Repository there. The point you've missed is that there is no single "deployment directory" crea...
by ray.wurlod
Tue May 23, 2006 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Limitation in aggregator stage??
Replies: 2
Views: 1344

Memory allocation for Aggregator stage can be tuned from the DS.TOOLS menu. It will fail if it runs out of memory. One way to avoid this is to sort the data by the grouping keys; in this way, the Aggregator can output the results, and free memory, whenever a grouping column value changes.
by ray.wurlod
Tue May 23, 2006 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Trapping with the OLE DB Stage
Replies: 3
Views: 1291

Did you ask the Ascential person who advised using OLEDB how to trap errors using it? If so, what response did you get?
by ray.wurlod
Tue May 23, 2006 3:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Quality Stage
Replies: 1
Views: 910

There is a separate forum for QualityStage, you might benefit from looking there. QualityStage performs four tasks; investigation of your data to determine how comprehensively your rules cover the data, standardization of data into standard forms (for example "Av", "Ave" and "Avenue" can all be conv...
by ray.wurlod
Tue May 23, 2006 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server to Enterprise Edition Transition Lab!
Replies: 7
Views: 1987

Stay tuned, we're actively investigating taking this on the road. (Still no free minibar though.) Australia is likely to be the first non-US presentation.
by ray.wurlod
Tue May 23, 2006 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: end of file
Replies: 2
Views: 1363

In parallel jobs provision is made for a final delimiter as well as a record terminator. This allows data terminated with a character, such as ";", to be managed properly without having to declare a dummy column and manage multiple field delimiters. There are, therefore, two properties. Your case, t...
by ray.wurlod
Tue May 23, 2006 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning: "dfloat" to result type decimal
Replies: 25
Views: 7776

0 rows/sec is not the same as 0 rows. These rates are rounded to the nearest whole number, which means that the link finished in less than 0.5 sec. Another reason I believe that rows/sec is not a useful metric.
by ray.wurlod
Tue May 23, 2006 2:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing Filenames between Jobs in Job Sequence
Replies: 5
Views: 1444

That's basically because there is no mechanism for doing so. Essentially you will need to touch down a list of file names to disk, which the subsequent job can read. Of course, you could pass the XX parameter to each of the jobs run from the job sequence, and allow it to be used to construct the fil...
by ray.wurlod
Tue May 23, 2006 2:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX Tutorial help
Replies: 3
Views: 1174

ashwin141 wrote:Hi

You can get ppts from Ascential(IBM) for Datastage EE also. Otherwise User Guide is the best option.


Regards
Ashwin

Can you please elaborate? What Powerpoint presentations are these?
by ray.wurlod
Tue May 23, 2006 2:36 pm
Forum: IBM QualityStage
Topic: Installing QualityStage plug-in in DataStage
Replies: 5
Views: 2408

Have you connected links to the stage?
by ray.wurlod
Tue May 23, 2006 2:34 pm
Forum: Data Integration
Topic: function to get the date of the next monday.
Replies: 2
Views: 9304

The trick you need is to realize that the internal format of dates in server jobs is an integer. If you divide by 7 and take the remainder (the Mod() function), then the result is 0 for Sunday, 1 for Monday, through to 6 for Saturday. So you take the date (current date is available as system variabl...
by ray.wurlod
Tue May 23, 2006 2:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: executable file access error
Replies: 2
Views: 790

Your job properties are open somewhere else, perhaps in Manager, perhaps in Director (Monitor view), perhaps by a different process. Did you shut down a client improperly? Whatever opened the job left a lock in the repository to indicate that the job was in use, and that lock remains. You will need ...