Identify Database Size

How will you identify database size when you create a database first time?

Questions by mo_yusuf1985

Showing Answers 1 - 12 of 12 Answers

sumer77

  • Oct 24th, 2008
 

1. Sum of the data files

select sum(bytes/1024/1024/1024) 'Size in GB' from dba_data_files;

2. Actual data size:

select sum(bytes/1024/1024/1024) 'Size in GB' from DBA_segments;

SURAJ BANSODE

  • Oct 13th, 2016
 

To find the size of database we need to Sum (datafiles+redo log files+temp files+control files)

  Was this answer useful?  Yes

Caesar Dutta

  • Nov 6th, 2017
 

Select sum(bytes) from dba_segments

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions