oaklanders
Technical User
- Dec 9, 2007
- 38
I am trying to find out how big my Schema is in Oracle 9i.
This SQL seems to give the total amount of space that I have used in my Schema?
How do I find the total size of my what I can use in my Schema?
This SQL seems to give the total amount of space that I have used in my Schema?
Code:
SELECT tablespace_name,
Sum(bytes)/1024/1024 AS total_size_mb
FROM dba_segments
WHERE owner = MYSCHEMANAME
How do I find the total size of my what I can use in my Schema?