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;
Exploring the intersection of technology and management, I share insights on databases, middleware, applications, and IT strategy to help professionals navigate complex systems with clarity and efficiency.
select (select sum(bytes)/1024/1024 from dba_data_files)+
(select sum(bytes)/1024/1024 from dba_temp_files) "Size in MB" from dual;
Comments
Post a Comment