日期:2014-05-18 浏览次数:20507 次
select rows from sysindexes where name='aaaa'
------解决方案--------------------
select * from sysindexes where object_name(id)='aaa'
------解决方案--------------------
--这种方法得到的结果不准确 select rows from sysindexes where name='TableName' --count(1)比count(*)快 select count(1) from TableName
------解决方案--------------------
换个写法.
select * from sysindexes where object_id('aaa')=id
要求不太高的话,可以使用.
因为这个的更新不是很准确的.要求高,就自己count
------解决方案--------------------
DBCC UPDATEUSAGE 'database_name','table_name' --报告目录视图中的页数和行数错误并进行更正。
select rows from sysindexes where indid < 2 and rows > 0 and id = object_id( 'tablename ')--查询
这个结果是准确的,跟count一样,效率也高