Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.tools -> Re: Parallel Query

Re: Parallel Query

From: Jonathan Lewis <jonathan_at_jlcomp.demon.co.uk>
Date: 2000/07/12
Message-ID: <963440309.501.0.nnrp-10.9e984b29@news.demon.co.uk>#1/1

We need a few more clues about what
you are doing.

Couple of thoughts though -
Number of discs may have a big impact,
sort_area_size and location of temp
tablespace may have a big effect.

As an example, if you are doing:

    select /*+ parallel (t , 4) */ col1, sum(col2)     from big_table t
    where col3 = 'xxx'
    group by col1

Where the condition returns 1M rows, and col1 has a couple of dozen values.

You could get close to a factor of 4 improvement on just 2 CPUs if you can avoid I/O contention.

--

Jonathan Lewis
Yet another Oracle-related web site:  http://www.jlcomp.demon.co.uk

Dean wrote in message <8kiblt$imq$1_at_uranium.btinternet.com>...

>Hi,
>Has anyone out there had any succes using Parallel Query?
>If so, can you give me a idea of the improvements seen, size of the tables
>(rows) and kit the RDBMS was running on.
>
>I'm struggling to get improvment on a 13Mill row table on a NT box with
>2x800mghz processors.
>I'm going to try with a 4x200mghz NT and a 4 processor IBM UNIX box but
>would be grateful for any pointers first.
>
>Many thanks in advance
>
>Dean
>
>
Received on Wed Jul 12 2000 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US