Think Foward Logo Tested on Oracle 8i Tested on Oracle 9i Tested on Oracle 10g

SQL Script

Table Extents for Given Owner

Updated: 13-Sep-2002
Version: 2.1

Description

This script is very similar to the List all tables/indexes extents in a given tablespace script. The difference being that this list extents detail for a given table owner. It prompts to enter the owner and a minimum value of extents. 

The script then lists all tables and indexes with the the number of extents greater than the value entered regardless of tablespace. Another MUST script for all production DBA's.

Parameters

tspace - The table owner to report on
min_ext - the minimum number of extents

SQL Source

REM Copyright (C) Think Forward.com 1998- 2005. All rights reserved. 
SET PAGES 999 SET FEEDBACK OFF SET HEADING ON SET PAGESIZE 999 SET LINES 79 SET VERIFY OFF col segment_type FORMAT a5 heading 'Type' col segment_name FORMAT A25 HEADING 'Seg Name' col partition_name FORMAT A25 HEADING 'Part Name' col iniMb FORMAT 9999.9 HEADING 'Intl(M)' col nxtMb FORMAT 9999.9 HEADING 'Next(M)' col iniKb FORMAT 9999.9 HEADING 'Intl(K)' col nxtKb FORMAT 9999.9 HEADING 'Next(K)' col extents FORMAT 999 HEADING 'CNT' PROMPT Listing Tablespaces ... select tablespace_name from dba_tablespaces; ACCEPT tspace prompt 'Enter Tablespace name: ' ACCEPT min_ext prompt 'Enter Minimum Value of Extents : ' BREAK ON REPORT COMPUTE SUM OF sum(bytes) ON REPORT spool extentst.lst SELECT segment_type ,segment_name ,initial_extent/(1024*1024) iniMb ,next_extent/(1024*1024) nxtMb ,initial_extent/1024 iniKb ,next_extent/1024 nxtKb ,extents ,sum(bytes) FROM dba_segments WHERE segment_type IN ('TABLE','INDEX') AND tablespace_name = UPPER('&tspace') AND extents >= &min_ext GROUP BY segment_type,segment_name,initial_extent,next_extent,extents / PROMPT PROMPT Partitions PROMPT col segment_type form a20 heading "Segment Type" SELECT segment_type ,partition_name ,initial_extent/(1024*1024) iniMb ,next_extent/(1024*1024) nxtMb ,extents ,sum(bytes) FROM dba_segments WHERE segment_type IN ('TABLE PARTITION','INDEX PARTITION') AND tablespace_name = UPPER('&tspace') AND extents >= &min_ext GROUP BY segment_type,partition_name,initial_extent,next_extent,extents / spool off CLEAR

Related Links

Oracle 8: (SQL Script) Table Extents for Given Owner

Return to Index of SQL Scripts


Site Map

General Information : Home | Company Profile | Contact Us | Legal
Database Support : Proactive Support | Pay Per Incident Support
Expert Services : High Availability | Creative Solutions | Training
Build Services : Oracle Installations | Revive your Oracle Setup | Low Cost Development
Free Oracle Resources: DBA Scripts | Oracle Links