Answers for "find storage of tables oracle"

SQL
0

plsql check how much space all databases are consuming

# To get how much bytes all data files are consuming in Oracle, run this
select sum(bytes) from dba_data_files;

# after that google how many mb, gb, tb, pb etc... that many bytes are
Posted by: Guest on July-26-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language