Search found 53125 matches

by ray.wurlod
Sun May 09, 2010 10:25 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Can IA push metadata to Metadata Workbench?
Replies: 8
Views: 3014

The metadata are stored in shared tables in the combined repository (XMETA). Tools read and write it there. On that basis, the concept of IA pushing metadata to MWB, or even of metadata being "in" MWB, are wide of the mark. No matter which tools import the metadata, it ends up (or can end ...
by ray.wurlod
Sun May 09, 2010 10:21 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Some IA tasks invoke Datastage?
Replies: 2
Views: 2397

It is accurate. It is still accurate. Of course, all DataStage parallel jobs run osh. Information Analyzer bypasses the graphical design interface and instead generates appropriate osh scripts directly. Because all required frequencies are - once column analysis has been completed - in IADB, the oth...
by ray.wurlod
Sun May 09, 2010 5:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parallel sub routines
Replies: 8
Views: 2701

The question is about before/after subroutines.
by ray.wurlod
Sun May 09, 2010 3:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removal of Special Character
Replies: 9
Views: 11236

Yes but, before we do, first explain why these characters are "special" and whether you have the permission of the owner of the data to make such a change.
by ray.wurlod
Sun May 09, 2010 3:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple UVSH.exe
Replies: 6
Views: 8296

Prove that it's a "problem", rather than "the way it works".
by ray.wurlod
Sat May 08, 2010 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parallel sub routines
Replies: 8
Views: 2701

Before/after subroutines are, however, written in DataStage BASIC.

The reference manual is DataStage BASIC.

A training class Programming with DataStage BASIC, which includes a module on before/after subroutines, is available on DVD from DSXchange Learning Center
by ray.wurlod
Sat May 08, 2010 1:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting in Database Vs Datastage
Replies: 11
Views: 5706

You must take control of what happens. Partitioning on the sort key will not destroy sorted order (think about it).
by ray.wurlod
Sat May 08, 2010 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: working of join stage!
Replies: 16
Views: 5536

It's your first choice, with the added benefit that it can process only one key value at a time from the driver input, and therefore can (because both inputs are sorted) free that memory once all the rows from the probe input have been collected and joined. And THEY are all adjacent because the data...
by ray.wurlod
Fri May 07, 2010 5:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WHERE condition as a parameter
Replies: 8
Views: 2577

A Search of DSXchange will suggest that what you want to do is not easily possible, though it IS possible to pass the entire SQL statement as a parameter and to use that as user-defined SQL.
by ray.wurlod
Fri May 07, 2010 5:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete the category in automated way
Replies: 5
Views: 1442

I'd still advise to use Director. As soon as you want to delete jobs as well as categories there is an awful lot of work that has to be done on the server. Deleting an empty category is easy; deleting a category in which jobs exist not so.
by ray.wurlod
Fri May 07, 2010 5:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IsValid Function not Working for "Numeric" Type
Replies: 2
Views: 1838

Would the Num() function be adequate for your purpose?
by ray.wurlod
Fri May 07, 2010 5:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join Stage omitting data
Replies: 4
Views: 1356

More likely to be a problem in a row whose row number is more than 700K.
What's the data type of the key? If VarChar, are they identically trimmed? If not, are the data types identical on stream and reference inputs?
by ray.wurlod
Fri May 07, 2010 5:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Char to Nchar while import
Replies: 3
Views: 1242

No you don't have to turn it off, but the importer will always assume Unicode while it is on. You can edit the imported table definitions if you prefer.
by ray.wurlod
Fri May 07, 2010 5:00 pm
Forum: General
Topic: [DataStage][SQL Client]Data has been truncated
Replies: 6
Views: 4019

The message about data being truncated is coming from the database server (ODBC driver), not from the Transformer stage. Verify that the table metadata correspond to what's in your job. Establish a trace to determine which rows are generating the fault, and isolate the cause by that means.
by ray.wurlod
Fri May 07, 2010 5:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aborting Sequence if job finshed with warnings
Replies: 9
Views: 11277

Exception Handler is only triggered by a failure, not by a warning.

If you want to manage warnings, you need explicit triggers.