Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Full table scan
Of course it will do full table scans! You're not limiting your join
to any set of values, you are trying to read two whole tables. Because
of the multiblock reads, full table scans and hash join will be more
efficient
then a nested loops plan where one table is read sequentially and the other
is read thru the PK index. Optimizer made the rigtht decision.
> -----Original Message-----
> From: Venu Gopal Andem [mailto:venu.andem_at_wipro.com]
> Sent: Tuesday, February 04, 2003 11:09 PM
> To: Multiple recipients of list ORACLE-L
> Subject: Full table scan
>
>
> List,
>
> I have the following scnario:
>
> I'm doing a select from 2 tables joining them using a primary key- ref
> key on the tables and the explain plan is showing 2 full
> table scans...
> Even after analyzing the tables and the Optimizer mode is set
> to CHOOSE.
>
> SELECT a.col1, b.col2
> FROM table1 a, table2 b
> WHERE a.col1 = b.col1
>
> Any comments...
>
> Thanks in advance,
> Venu
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Gogala, Mladen INET: MGogala_at_oxhp.com Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Wed Feb 05 2003 - 09:33:38 CST