Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: check high wate mark on tables??
The problem is that you still have objects in the tablespace using
extents high up in the file. You can look into the tablespace with the
following query to see what objects are using space:
select * from dba_extents
where tablespace_name='{tablespace_name}'
order by block_id desc
You can then move the offending objects to force them to use free extents elsewhere in the tablespace:
Alter table {table_name} move {tablespace_name} Alter index {index_name} rebuild {tablespace_name}
Tom
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of dba1 mcc
Sent: Thursday, May 17, 2007 10:54 AM
To: oracle-l_at_freelists.org
Subject: check high wate mark on tables??
we have ORACLE on version 9.2.0.8. after we truncate sever tables, we still can NOT shrink data file due to high water mark did not change.
Does there has way to check which table after truncate high water mark no chage?
Thanks.
![]() |
![]() |