Search found 53125 matches

by ray.wurlod
Fri Sep 05, 2008 9:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: string_from_decimal showing warning
Replies: 4
Views: 1872

Yes, because DataStage still has to alert you about the possibility that your data may be truncated.
by ray.wurlod
Fri Sep 05, 2008 9:28 pm
Forum: General
Topic: IBM PX Advance course DX455
Replies: 2
Views: 1168

Could be worth it, because you get to work with heterogenous database environments- DB2/Teradata/etc. Only in theory. It's "marketing-speak". The version 7.5 class runs with DB2 UDB, yet makes the same claim. That said, they do supply quite good notes on the other main database types (Oracle, Infor...
by ray.wurlod
Fri Sep 05, 2008 7:03 pm
Forum: Site/Forum
Topic: Problems Searching Forum?
Replies: 3
Views: 3655

This seems to be getting worse. I just did a couple of searches for combinations of words I know to exist. All "all terms" searches returned no hits, and "any word" searches only returned results for the current month, both when the days filter was left blank and when the days filter was set to 400....
by ray.wurlod
Fri Sep 05, 2008 6:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting rows based on non key coloumn value
Replies: 6
Views: 1629

So are you replacing these rows (there is "replace existing rows" rule), or are you deleting some and inserting different ones, or a mixture of both? That is, do you only delete rows where that row (set of key values) is in the input stream, or do you delete these rows irrespective of what's in the ...
by ray.wurlod
Fri Sep 05, 2008 6:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting rows based on non key coloumn value
Replies: 6
Views: 1629

Create one job to do the deletes and one job to do the inserts. Run the second after the first, to avoid locking issues. For large volumes of data stage the rows in a Data Set.
by ray.wurlod
Fri Sep 05, 2008 6:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage
Replies: 10
Views: 2072

When Write Method is Load you are not doing transctional inserts. You are using sqlldr. Therefore transaction size is irrelevant.
by ray.wurlod
Fri Sep 05, 2008 6:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java Issues with DataStage
Replies: 13
Views: 6122

Likewise the performance monitor is a Java app, but there should be no way that it could cause jobs to abort. That's the theory anyway. In practice jobs can abort through not being able to communicate with the performance monitor.
by ray.wurlod
Fri Sep 05, 2008 5:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DELETE ROWS FROM TARGET
Replies: 1
Views: 911

Go ahead and delete them. I assume you can identify them. Beware that transactional deletes can be very slow. You can delete them in a Before SQL command, through a script in a before-job subroutine, or in a preliminary job. the choice would really depend on what comes next and what stage type you'r...
by ray.wurlod
Fri Sep 05, 2008 5:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing parameters in PX
Replies: 3
Views: 2099

Why not use a server job? After all, it's only one row. A server job will be far more efficient than a parallel job for processing one row. And you can set the user status area much more easily.
by ray.wurlod
Fri Sep 05, 2008 5:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage 7.5.3 Installation Guide
Replies: 2
Views: 3247

Not if it doesn't need one. All 7.5.x versions (7.5.1 through 7.5.3 but excluding 7.5x2 which is a special case) use the same installation method.
by ray.wurlod
Fri Sep 05, 2008 5:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_PM_PLAYER_TIMING
Replies: 1
Views: 1795

What do you know about operating system monitoring? Sys is the CPU time charged to "the system" (for example for process initiation, paging, etc); User is the CPU time charged to the actual executing user.
by ray.wurlod
Fri Sep 05, 2008 5:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage concept
Replies: 7
Views: 1430

No. Somewhere it must keep track. Otherwise there's no way to establish the restart point.
by ray.wurlod
Fri Sep 05, 2008 5:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: string_from_decimal showing warning
Replies: 4
Views: 1872

The string for a decimal needs to have at least two more character positions than the precision of the decimal data type, one for the decimal placeholder character and one for the sign character (which may be a space). When converting from an unbounded string to a bounded string (for example string ...
by ray.wurlod
Fri Sep 05, 2008 5:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to comment out After SQLs or Before SQLs in Datastage
Replies: 2
Views: 1335

What do you mean by "did not work"?

It may be that there has to be some statement there. I use an additional WHERE clause, such as DELETE FROM TABLE WHERE 1=0. Oracle is quite happy to delete the 0 rows that match my condition.
by ray.wurlod
Fri Sep 05, 2008 5:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connect to Multiple Versions of DB2 from project.
Replies: 2
Views: 1133

I wouldn't think it's possible, not least because DB2INSTANCE can only have one value at a time.