Query to find the size of schema in Oracle Database Unknown 2:12 AM Add Comment oracle sql The following query will show you howto get the schema size in GB in Oracle Database. SELECT OWNER, SUM(bytes)/1024/1024/1024 AS SIZE_GIG ... Read More