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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Index

RE: Index

From: Kieran Murray <Kieran.Murray_at_esat.com>
Date: Fri, 1 Dec 2000 09:25:24 -0000
Message-Id: <10697.123379@fatcity.com>


Sonia,
unless you specify a particular <test> in the WHERE condition then this statement
is always going to do a full table scan. Think about it, you're asking Oracle
to give you a count of the number of rows for each <test> value in the table, it has no choice
but to scan the whole table....
could you not pass in a <test> value into the select, eg. using a bind variable??

For example :-   	SELECT count(*)
			FROM	 mytest
			WHERE	 test = v_test;

Where v_test is the <test> value you're interested in....

Regards,
Kieran

-----Original Message-----
From: sonia pajerowski [mailto:spajerowski_at_yahoo.com] Sent: 30 November 2000 22:21
To: Multiple recipients of list ORACLE-L Subject: RE: Index

Even if I take out the null clause and change the select to
select count(*), test from mytest group by test

 I am getting the same results from the explain plan. Currently, I have 100 rows but once we go live we can grow to few million in matter of days.
Is there a way to test on a test box without inserting thousand's of rows in the table.

Thanks
Sonia P.


Do You Yahoo!?
Yahoo! Shopping - Thousands of Stores. Millions of Products. http://shopping.yahoo.com/
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: sonia pajerowski
  INET: spajerowski_at_yahoo.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
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).


**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
Received on Fri Dec 01 2000 - 03:25:24 CST

Original text of this message

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