怎么在oracle数据库中想统计一个用户下所有表的记录的总条数?

如题所述

第1个回答  推荐于2019-11-15
analyze table table_name COMPUTE STATISTICS
对表分析后在使用
select count(^) from table_name
如果你的table_name 有主键 ID
select count(ID) from table_name 在统计的时候会用到主键索引本回答被网友采纳
第2个回答  2018-01-10
您试试这个
select count(*) from dba_tables where owner = 用户名' --如果有DBA权限
or
select count(*) from all_tables where owner = '用户名' --普通权限
速度大概在10S左右
相似回答