Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: parallel query and latch waits
Which version of Oracle.
What is the
serial run time
parallel run time
total wait time due to latches
Which latches are responsible for most waits ?
-- Jonathan Lewis Yet another Oracle-related web site: http://www.jlcomp.demon.co.uk Practical Oracle 8i: Building Efficient Databases Publishers: Addison-Wesley Reviews at: http://www.jlcomp.demon.co.uk/book_rev.html Rob Katofiasc wrote in message ...Received on Thu Jun 07 2001 - 03:24:52 CDT
>I have a table set up with parallel degree 4
>the table is spread out across 4 physical disk mounts.
>
>Everything run great except if I have a subquery
>
>i.e.
>
>select sum(impressions)
>from fact_table --parallel degree 4
>where user_id in (select user_id
> from users
> where external_role_type IN('Named User', 'Registered
User')
> )
>
>latch waits are 60% of non-idle wait time (from spotlight)
>What can I do to reduce this latch problem?
>
>If I remove parallel from the fact table I do not have a problem with
latches?
>
>Thanks Rob