Friday, January 22, 2021

Oracle Database size

To Find an oracle database size 

SELECT SUM (bytes) / 1024 / 1024 / 1024 AS GB FROM dba_data_files;

The above dba_data_files view will calculate size of the (actual) all datafiles created with the 
current size. 

 

No comments:

Post a Comment

How to Trouble shoot Logfile_sync wait event

   First  Identify and break down LGWR wait events. Query wait events for LGWR. In this instance LGWR sid is 3 (and usually it is). select s...