To calculate the actual size of the schema or user in oracle database use the query below.
1 | SQL> select owner, sum (bytes)/1024/1024/1024 Size_GB from dba_segments group by owner; |
meda Edited answer 24/09/2022
Oracle, Open source , Big data, CI,CD, version control, GITLab, GitHub, data warehouse, BI, AI, Q& A , Data science
To calculate the actual size of the schema or user in oracle database use the query below.
1 | SQL> select owner, sum (bytes)/1024/1024/1024 Size_GB from dba_segments group by owner; |