Our India team is reporting +45C temps so perhaps I shouldn't complain. :-)
SQL of the day:
A simple query to give a quick overview of who is using database disk space and also in what tablespace.
column USED format 999,999.99
select
owner,
tablespace_name,
sum(bytes/1024/1024) USED
from
dba_segments
group by
owner,
tablespace_name
/
No comments:
Post a Comment