Wednesday, June 1, 2011

Oracle Database Size



You can roughly find your Oracle database size from the below query...


select (select sum(bytes)/1024/1024 from dba_data_files)+
(select sum(bytes)/1024/1024 from dba_temp_files) "Size in MB" from dual;

No comments:

Post a Comment