SELECT table_name , (SELECT (sum(bytes)/1024) "SizeinKB" FROM dba_segments) AS KB
FROM user_tables
ORDER BY table_name;
This lists all my user table and the total space taken by database. How do I show each table along with its total size used? Im on sql plus. Thank you.