1 查找记录条数 select count(*) from table_name(换成表名)
2 查找表数据大小
select num_rows * avg_row_len
from user_tables
where table_name = 'table_name(换成表名)';
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did228293
1 查找记录条数 select count(*) from table_name(换成表名)
2 查找表数据大小
select num_rows * avg_row_len
from user_tables
where table_name = 'table_name(换成表名)';
上一篇: oracle 性能优化建议小结