How to determine the objects approaching max extents.

Questions by sszssz

Showing Answers 1 - 2 of 2 Answers

kumaresan

  • Sep 12th, 2006
 

This is the simple query which gives objects nearing to maxextents

select segment_name,segment_owner from dba_segments where max_extents-extents=0;

  Was this answer useful?  Yes

kumaresan.m

  • Sep 12th, 2006
 

a simple query which  tells objects reaching maxextents

sql> select segment_name,segment_owner from dba_segments where   max_extents-extents=0;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions