Search found 53125 matches

by ray.wurlod
Mon Nov 06, 2006 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how many processors will support each node in PX
Replies: 2
Views: 1481

How many CPUs do you think would be required to process a query such as SELECT MAX(keyvalue) FROM table;

The answer to your overall question clearly is "it depends".
by ray.wurlod
Mon Nov 06, 2006 8:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: precedence of Cursor Stability too Uncommitted Read
Replies: 1
Views: 2085

Transaction isolation levels are part of the ODBC standards. There is a good discussion in the DataStage BASIC manual. Read that, particularly the part about what potential data anomalies are avoided by each. Then, if you still have questions, post here again.
by ray.wurlod
Mon Nov 06, 2006 8:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading of Bulky Hash File
Replies: 1
Views: 832

10000 rows is not large for a hashed file, particularly if you've only loaded the columns you actually need from the DB2 table.
by ray.wurlod
Mon Nov 06, 2006 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transfer a Batch of Data over a link
Replies: 6
Views: 1091

UV stage can not connect to DB2 but ODBC can, and still deliver multi-row result sets from lookup. This is addressed in your other post.
by ray.wurlod
Mon Nov 06, 2006 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JAVA PACK - Documentation
Replies: 4
Views: 1451

Your support provider should be able to obtain this quickly (electronically) from IBM.
by ray.wurlod
Mon Nov 06, 2006 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Job - Help
Replies: 6
Views: 2794

Hashed files are not necessarily pre-sized. This is a choice that the developer can make. By default table space management in DataStage dynamic hashed files is automatic.
by ray.wurlod
Mon Nov 06, 2006 8:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing DB2 using ODBC
Replies: 2
Views: 648

Get the SQL data types in your job design to match those in the DB2 table (that is, Char of the appropriate size).
by ray.wurlod
Sun Nov 05, 2006 7:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum number of KEY Fields in a Hash File
Replies: 13
Views: 3798

Simple is often the most effective. But, with this design, how do you handle the duplicate key? Or are you generating surrogate (artificial) keys into the target table?
by ray.wurlod
Sun Nov 05, 2006 12:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handle Abort automatically.
Replies: 4
Views: 1143

"Serks", actually - Kim is in Texas.
by ray.wurlod
Sun Nov 05, 2006 8:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transfer a Batch of Data over a link
Replies: 6
Views: 1091

Not enough information. DataStage server jobs typically send rows; the number of rows in each "batch" is set by "array size" or some similarly-named property. If what you claim is true there is some problem with your configuration; you need to involve your support provider. There is no reason to los...
by ray.wurlod
Sun Nov 05, 2006 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handle Abort automatically.
Replies: 4
Views: 1143

One obvious option is to upgrade to 7.5, where you get all of the goodies whose absence you bemoan. What precisely do you mean by "abort the mail sequence"? What's wrong with the method you've chosen (using a trigger to detect the failure)? There's no difficulty (using such an approach) to have a wa...
by ray.wurlod
Sat Nov 04, 2006 2:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How i can Do this
Replies: 3
Views: 1464

I understand completely what you are trying to do, except for the specific circumstances (such as whether there is a known maximum number of columns that will be generated). The technique is called "vertical pivot". How you accomplish it depends on circumstances such as that mentioned above. There i...
by ray.wurlod
Sat Nov 04, 2006 6:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comma to Decimal Point Substitution
Replies: 2
Views: 1228

I believe you'll find that no decimal placeholder character is stored at all; it is applied when extracting decimal data from the database. The fact that it is a comma suggests that you are in a European locale. If you are running DataStage with NLS enabled, you can set your locale differently. The ...
by ray.wurlod
Sat Nov 04, 2006 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reset the jobs
Replies: 6
Views: 1591

That's for non-obvious reasons. You need a fresh attachment. handle1 = DSAttachJob("job", DSJ.ERRFATAL) Status = DSGetJobInfo(handle1, DSJ.JOBSTATUS) If Status = DSJS.RUNFAILED Or Status = DSJS.CRASHED Or Status = DSJS.STOPPED Then ErrCode = DSRunJob(handle1, DSJ.RUNRES...
by ray.wurlod
Fri Nov 03, 2006 6:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating a table from one db to another
Replies: 1
Views: 588

DataStage can do it, but you have to generate a table definition that contains data types that are legal for SQL Server. That part is not automatic. I'm not aware of any tools out there that can do it automatically.