Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Simple DBA Type Question
Hi
To get the total allocated space of your database
select sum(bytes/1024/1024) from dba_data_files
/
In MegaBytes
To get the total space used
select sum(bytes/1024/1024) from dba_segments /
HTH
Suhen Pather
Oracle DBA
Telkom SA
>>> peterhazelton_at_hotmail.com 08/21/00 04:44PM >>>
Hi guys
Real quick question here! Using SQL plus, how can I determine the =
physical=20
size of my database? If that cannot be done, is there a way to see the =
size=20
of individual tables?
Thanks a lot
Peter
--=20
Author: Peter Hazelton
INET: peterhazelton_at_hotmail.com=20
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Mon Aug 21 2000 - 10:01:53 CDT