
- Forum
- Database
- Oracle Database
- size of database
size of database
This is a discussion on size of database within the Oracle Database forums, part of the Database category; howto know the size of database...
-
size of database
howto know the size of database
-
Size of database
If you are on a unix platform then you can find the size of the database with the following command:
( to know the size in MB) type in the following command
select sum(bytes)/1024/1024 "Meg" from dba_data_files;
If you are on windows platform then size of the datafiles imples the size of the database ( offcourse redo logs also add size of the database)
Hope this is may help you.
Thank you,
Siri6589,
Oracle DBA.
-
11-27-2007, 05:47 AM #3
- Join Date
- Feb 2007
- Location
- Chennai
- Answers
- 84
comments
Thanks Siri for ur answer
-
Sponsored Ads

Reply With Quote





