赞
踩
oracle 数据库统计单表数据量 select count(1) from tableName
在数据量少的时候是没有问题的,
在项目中有个单表数据量160000000 用 select count(id) from tableName,
id 是有主键索引执行这个sql 5分钟后依然没有结果
那么可以利用rownum统计
select count(1) from (
select rownum from tableName where rownum <200000000 )
这样就可以统计出来了 20多秒左右
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。