1 --传统统计条数 2 select count(*) from [表名] 3 4 -- 高效统计 5 --说明: 6 -- 1.注意观察last_analyzed列的日期 7 -- 2.统计前请在Command下执行以下语句 8 -- exec dbms_stats.gather_table_stats('[用户名]','[表名]',cascade=>true); 9 10 select * from tabs t where t.table_name='[表名]'
1 --传统统计条数 2 select count(*) from [表名] 3 4 -- 高效统计 5 --说明: 6 -- 1.注意观察last_analyzed列的日期 7 -- 2.统计前请在Command下执行以下语句 8 -- exec dbms_stats.gather_table_stats('[用户名]','[表名]',cascade=>true); 9 10 select * from tabs t where t.table_name='[表名]'
作者:shungdawei
出处:http://www.cnblogs.com/shungdawei
本页版权归作者和博客园所有,欢迎转载,但未经作者同意必须保留此段声明,
且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利。