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

Home -> Community -> Usenet -> c.d.o.server -> Re: Determining when the NEXT EXTENT will happen

Re: Determining when the NEXT EXTENT will happen

From: Winnie Liu <oracle_dba_at_zdnetmail.com>
Date: 1998/10/28
Message-ID: <718p0d$gbu@dfw-ixnews6.ix.netcom.com>#1/1

use the old method, the ROWID, and determine how many oracle block had that table been used.

select count(*) from
(select distinct substr(rowid,1,8) from table1);

But I can't find of a way to find out the index though..

Winnie

Rob wrote in message ...
>Is there someone who can tell me how to determine when an object (table or
>index) is going to throw an additional extent. ie.) how to find the
>highwatermark of the current extent, or something like that?
>
>Thanks,
>Rob.
>
>
Received on Wed Oct 28 1998 - 00:00:00 CST

Original text of this message

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