Mereba Technology
Oracle, Open source , Big data, CI,CD, version control, GITLab, GitHub, data warehouse, BI, AI, Q& A , Data science
Home » Questions » schema size in oracle
How to calculate the size of a schema in oracle database?
To calculate the actual size of the schema or user in oracle database use the query below.
SQL>
select
owner,
sum
(bytes)/1024/1024/1024 Size_GB
from
dba_segments
group
by
owner;