统计某用户下包含的表的数量

有时我们想比较两个用户下是否有相同数量的表,可以通过 dba_tables 或 all_tables进行查询得到。
假设有用户LZG和LZG2,在system用户下执行以下查询
select COUNT(*) from dba_tables where owner='LZG'
select COUNT(*) from dba_tables where owner='LZG2'

select COUNT(*) from all_tables where owner='LZG'
select COUNT(*) from all_tables where owner='LZG2'

关于dba_tables和all_tables的区别,可以参考
[url]http://tech.itdb.cn/n/200608/09/n20060809_45461.shtml[/url]

你可能感兴趣的:(用户,职场,休闲,数量)