DB UP TIME |
select SYSDATE-logon_time "Days", (SYSDATE-logon_time)*24 "Hours" |
DB SIZE (Database Size,Used space,Free space) |
col "Database Size" format a20 |
Database grouth year wise |
select |
Database grouth monthly wise |
select to_char(creation_time, 'RRRR Month') "Month", |
Calculate total space for all datafiles within database. |
select DF.TOTAL/1048576 "DataFile Size Mb", |
Calculate space for list of tablespaces within primary database. |
select DF.TOTAL/1048576 "DataFile Size Mb", |
Schema SIZE |
select sum(bytes)/1024/1024/1024 from dba_segments where owner=upper('&owner'); |
No comments:
Post a Comment