Cheeky Cockatoo

Life Advice and Stories, Travel, Oracle Tech, Good Food and More

ts_free.sql

Download Script

/*  ts_free.sql                                                       */
alter session set optimizer_mode = choose ;

column  dummy noprint
column  pct_used format 999.9       heading "%|Used"
column  "Tablespace Name"    format a16
column  bytes   format 9,999,999,999,999    heading "Bytes"
column  used    format 999,999,999,999   heading "Used"
column  free    format 999,999,999,999  heading "Free"
break   on report
compute sum of bytes on report
compute sum of free on report
compute sum of used on report

select /*+ rule */
       a.tablespace_name "Tablespace Name", b.tablespace_name dummy,
       sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id ) bytes,
       sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id ) -
       sum(a.bytes)/count( distinct b.file_id ) used,
       sum(a.bytes)/count( distinct b.file_id ) free,
       100 * ( (sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id )) -
       (sum(a.bytes)/count( distinct b.file_id ) )) /
       (sum(b.bytes)/count( distinct a.file_id||'.'||a.block_id )) pct_used
  from sys.dba_free_space a, sys.dba_data_files b
  where a.tablespace_name = b.tablespace_name
  group by a.tablespace_name, b.tablespace_name
  order by a.tablespace_name;

select tablespace_name, sum(bytes_used) used, sum(bytes_free) free
from v$temp_space_header 
group by tablespace_name;