Search found 53125 matches

by ray.wurlod
Fri Aug 13, 2004 9:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: column data typing
Replies: 7
Views: 2046

:oops:
Quelle embarrassment!
by ray.wurlod
Fri Aug 13, 2004 9:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: PeopleSoft EPM ASCL jobs
Replies: 8
Views: 1533

It's not impossible that, at some future time, PeopleSoft may adopt Quality Stage as the preferred tool for name and address cleansing and, maybe, certification.
And the RTI components may end up being useful as Web services supporting the PeopleSoft application! 8)
by ray.wurlod
Fri Aug 13, 2004 9:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different character collation types across source and produc
Replies: 3
Views: 1166

Q: is there any particular reason why DWH tables contain char instead of varchar ? A1: There's the obvious one; whoever issued the CREATE TABLE command put them there. A2: In some databases (probably most) extracting CHAR is far more efficient than extracting VARCHAR, at a physical level, and defini...
by ray.wurlod
Fri Aug 13, 2004 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: convert hex to integer
Replies: 4
Views: 1817

Still in India, coming up to 21:00.
by ray.wurlod
Fri Aug 13, 2004 9:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: deleting dependant table rows
Replies: 7
Views: 1802

I doubt that you can have two simultaneous writes to the same Sequential File. Try this design instead. SeqFileA------->LoadTransform-------->universeA Using ExecTCL from the before-stage subroutine in the Transformer stage (which is executed before any rows are processed), execute the command Clear...
by ray.wurlod
Fri Aug 13, 2004 9:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: convert hex to integer
Replies: 4
Views: 1817

At least two built-in functions.

DTX(n)

Iconv(n, "MX")

You can also use variants like Iconv(n, "MCD") and Iconv(n, "MCDX") - or maybe that last one's Iconv(n, "MCXD") - it's been a while since I played with them. Check out the DataStage BASIC manual or on-line help.

Enjoy!
by ray.wurlod
Fri Aug 13, 2004 9:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: PeopleSoft EPM ASCL jobs
Replies: 8
Views: 1533

Keep in mind, though, that most bulk loaders prefer fixed length format files, as does Quality Stage.
by ray.wurlod
Fri Aug 13, 2004 9:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine against hash file (need dummie's explanation)
Replies: 6
Views: 1916

If you insist on doing it in code, and you want BETWEEN comparisons, why not use a B-tree file (Type 25) rather than a hashed file? Then you can skim left and right along the leaf nodes using the BSCAN statement.
by ray.wurlod
Fri Aug 13, 2004 9:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different character collation types across source and produc
Replies: 3
Views: 1166

It shouldn't be a problem, as you're not comparing or sorting or joining during the load process.
by ray.wurlod
Fri Aug 13, 2004 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: column data typing
Replies: 7
Views: 2046

If you're grouping a column in the Pivot stage and that column contains unique values then, just like in SQL, there's nothing to group.

Can you post a specific example?
by ray.wurlod
Fri Aug 13, 2004 1:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: deleting dependant table rows
Replies: 7
Views: 1802

Does your database support a CASCADE rule on DELETE ? If so, why not use that?
by ray.wurlod
Fri Aug 13, 2004 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: column data typing
Replies: 7
Views: 2046

In a word, laziness. People know it's not essential for operation of DataStage, so don't bother. In many places the same problem exists for documentation; people realise that it's not necessary for operation of DataStage so they don't bother with that either. It's a sad indictment on the way the wor...
by ray.wurlod
Thu Aug 12, 2004 10:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update
Replies: 5
Views: 1045

If you try to update and the row does not exist, the update will fail. In this case you need to do an insert.
by ray.wurlod
Thu Aug 12, 2004 10:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can not call a Stored Procedure using odbc stage
Replies: 9
Views: 3120

If you use a Dynamic Relational Stage you can flick between the two and figure out the differences.
8)
by ray.wurlod
Thu Aug 12, 2004 10:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing into excel
Replies: 6
Views: 3372

Excel is probably reporting the column data type as NVarChar. Can't remember the workaround for this; do a search for NVarChar on the forum.