Search found 53125 matches

by ray.wurlod
Sat Apr 05, 2008 5:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage::Performance Issue
Replies: 8
Views: 1677

Splitting your stream into two - Insert only and Update only - is the usual recommendation to achieve shortest execution time. Upsert works by trying one (whichever you have specified as happening first) then, if that fails because of the primary key constraint, trying the other. You can avoid the t...
by ray.wurlod
Sat Apr 05, 2008 5:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding oracle error with indexes enabled
Replies: 8
Views: 5883

If you search DSXchange you will find that Maintenance mode does render indexes unusable - you need to disable SKIP_INDEX_MAINTENANCE or a Close command to remedy that.
by ray.wurlod
Fri Apr 04, 2008 9:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Improving Performance
Replies: 2
Views: 1024

1. Not really. Multiple readers is about all you have unless you chop up the file first. 2. No. Sparse lookups are only available for DB2 and Oracle Enterprise stages. There is a virtual Data Set associated with very other link between non-combined operators. You *may* get some gain by preventing th...
by ray.wurlod
Fri Apr 04, 2008 9:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job run stats
Replies: 8
Views: 2469

But the original works OK - you just get row counts totalled across all partitions only.
by ray.wurlod
Fri Apr 04, 2008 5:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: View Data problem due to varchar columns
Replies: 10
Views: 1836

No. I am talking about the Field Width property. Right click on a row in the Columns grid and choose Edit Row from the menu. You'll find it there. (The Field Width *may* show up as the Display Width in the Columns grid, but definitely not as the Length. Length is the maximum size of a VarChar.)
by ray.wurlod
Fri Apr 04, 2008 5:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding oracle error with indexes enabled
Replies: 8
Views: 5883

"Maintenance". Because it works.
by ray.wurlod
Fri Apr 04, 2008 5:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job run stats
Replies: 8
Views: 2469

I think the question is whether ETLStats can gather data from parallel jobs, and the answer to that question is "yes".
by ray.wurlod
Fri Apr 04, 2008 5:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF output link row counts incorrect
Replies: 4
Views: 1317

Is the CFF stage (operator) combined with the Copy stage?

If so, there is only one operator from which row counts can be obtained, and these are usuallly displayed on the output of that operator - the most downstream link.

Try disabling operator combination to see what I mean.
by ray.wurlod
Fri Apr 04, 2008 4:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing 000-415 certifications without Hands On
Replies: 5
Views: 1371

If you go to IOD 2008 in Las Vegas (as an attendee) you can take a certification preparation class (from memory it's about $400) and then attempt the exam itself for free. Check out the IOD web site for more information. Of course there are no guarantees - you will definitely not pass if you go into...
by ray.wurlod
Fri Apr 04, 2008 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Enterprise Stage
Replies: 1
Views: 546

The manuals are called odbcref.pdf and odbcuser.pdf (reference guide and user guide respectively) - and, for version 7.5x2, they are the first two links from page 2 of the bookshelf.
by ray.wurlod
Fri Apr 04, 2008 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installing Datastage
Replies: 10
Views: 5036

dspxguy wrote:i had to use my laptop and it had vista...
I suspect you/they have violated your client's end user licensing agreement by requiring that.
by ray.wurlod
Fri Apr 04, 2008 4:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: default.apt
Replies: 5
Views: 1382

node is a unique name for each (logical) processing name; it is used primarily in reporting error messages - internally DataStage uses node #0, node #1 and so on. fastname is the network node name of the machine on which that processing node will execute. If you are only using one machine the value ...
by ray.wurlod
Fri Apr 04, 2008 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: query on vertical pivot
Replies: 7
Views: 2698

Unless you tell us precisely how you are processing in the Transformer we can not answer your question. It IS possible for more rows to come out of a Transformer than go in, but you have to program this - it can not happen of its own accord.
by ray.wurlod
Fri Apr 04, 2008 3:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to minimise the output?
Replies: 7
Views: 1439

Not in source, only in target. Derive as MIN(XX_MA_DT) and MAX(XX_MA_DT) respectively.
by ray.wurlod
Fri Apr 04, 2008 3:38 am
Forum: General
Topic: SQL server varchar to Oracle date format
Replies: 4
Views: 1735

Yes, that seems likely. You need to make sure that column #138 contains all the characters needed by the target database.