Search found 53125 matches

by ray.wurlod
Fri Feb 23, 2007 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to Read Decimal Values from a sequential file
Replies: 6
Views: 2815

Why not use a Sequential File stage with a Rejects output link? This will automatically "validate" the data types. Downstream on the Rejects link you could, for example, use a Column Import stage to reconstitute the record format from the raw string, and direct whatever you like to your errors table.
by ray.wurlod
Fri Feb 23, 2007 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to DB2 on AS400
Replies: 5
Views: 1020

It's my undestanding that you need DB2 Connect for ALL cross-platform DB2 connectivity.
by ray.wurlod
Fri Feb 23, 2007 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server License Upgrade
Replies: 9
Views: 1803

It's also my understanding that the serial number can not be changed in version 7.5 without uninstalling and reinstalling. Therefore export all your projects first!
by ray.wurlod
Fri Feb 23, 2007 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with the Data type Char
Replies: 2
Views: 728

In both editions there is a pad character property. In parallel jobs you can set APT_STRING_PADCHAR globally. Its default value is \0 which is why this is used to pad your strings. In C programming, a "\0" character is a string terminator, so it's a useful default choice. You can override this at th...
by ray.wurlod
Fri Feb 23, 2007 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SAP InfoSpoke
Replies: 2
Views: 903

Thank you for that valuable information.

You can read the date column by changing its Format String property to "%yyyy%mm%dd" (with no delimiter characters); thereby avoiding the data type conversion.
by ray.wurlod
Fri Feb 23, 2007 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert records based on certian contents of records
Replies: 8
Views: 1957

If you're happy with the explanation, please mark the thread as Resolved. Otherwise please indicate what it is you don't follow.
by ray.wurlod
Fri Feb 23, 2007 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why dont we have look-up stage in Datastage Server jobs
Replies: 10
Views: 4746

Ultimately the answer is that the vendor elected to have server jobs perform lookups one way (Transformer stage) and to have parallel jobs do it a different way (Lookup stage). The parallel Transformer stage does not support reference inputs. As to why, only the vendor could answer that definitively.
by ray.wurlod
Fri Feb 23, 2007 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file warnings
Replies: 10
Views: 5372

Novneet, why do you say this is a "better" approach? Would an oversized VarChar (for example VarChar(255)) be even better? It's my understanding that unbounded VarChar fields are discouraged by the vendor except in one specific case (storage in persistent Data Sets). But I'd be glad to read your exp...
by ray.wurlod
Fri Feb 23, 2007 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server job (Sequencer not compiling)
Replies: 5
Views: 2914

It's a good theory. The DS.CHECKER command will clean up any orphaned tables left over from partial deletion of a job.
by ray.wurlod
Fri Feb 23, 2007 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar issues..
Replies: 7
Views: 1834

Upstream of the Transformer stage define it to be larger, say VarChar(255). Downstream of the Transformer stage define it to be the desired size. Use a constraint expression in the Transformer stage to direct rows where it is of the appropriate size onto one output link, and use a reject or alternat...
by ray.wurlod
Fri Feb 23, 2007 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSN,PLUGIN ISSUE
Replies: 21
Views: 10259

This is a duplicate thread. Please continue the conversation in this thread.

This thread is closed.
by ray.wurlod
Fri Feb 23, 2007 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to configure DSN for Oracle In unix (Server)
Replies: 22
Views: 8704

How about we stop maintaining two effectively identical threads on this one? What you've typed in above is manifestly incomplete; you can't get a status of "Running" from uv -admin -info immediately after shutting DataStage down with uv -admin -stop command. In any case, it's now obvious that the f...
by ray.wurlod
Fri Feb 23, 2007 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File
Replies: 10
Views: 2640

A hash file is a tool used for shaping blocks of hash.

A hashed file is a DataStage table particularly well-suited to key-based lookups because it determines the record location by applying a hashing algorithm to the key value.
by ray.wurlod
Fri Feb 23, 2007 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding a column to an existing Hashed file ?
Replies: 4
Views: 949

It IS neat, isn't it? :D

If you had created the hashed file with a UV stage, however, you would have had to ensure that the system tables were also updated.

Code: Select all

ALTER TABLE MyTable ADD COLUMN ColName VARCHAR(32) DEFAULT '';


That's also how you'd do it in most databases.
by ray.wurlod
Fri Feb 23, 2007 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading a file from Mainframe server
Replies: 7
Views: 3449

Metadata for table definitions are stored generically. You can prove this easily; open the table definition and select the Layout tab. You can then view the same table definition as an SQL table definition, an Orchestrate record schema or as a COBOL file definition. I guess level numbers might inter...