- 论坛徽章:
- 0
|
前几天个别表出现605错误,后删除重建后解决,最近发现有个业务操作总是锁着几个表不放,自己也执行不了,后来通过showplan定位到几个表,然后挨个dbcc检查,其他都没问题,其中“sat04”有点异常,如下:
1> dbcc checktable (sat04)
2> go
Checking sat04: Logical pagesize is 2048 bytes
The total number of data pages in this table is 12759.
Msg 2583, Level 18, State 2:
Line 1:
Number of data pages (12759) counted by DBCC differs from count in the data OAM
(12756) for dbid 5 object 205956779.
The total number of pages which could be garbage collected to free up some space
is 6586.
Table has 96411 data rows.
DBCC execution completed. If DBCC printed error messages, contact a user with
System Administrator (SA) role.
貌似是DBCC统计结果与表自己的OAM也统计的结果不一致,有没有啥影响啊,上述的那个业务操作过不去和这个又关吗?难道这个问题的解决方法和605错误一样吗?请各位大虾帮忙啊,小弟我最近的问题比较多啊,请各位见谅,多谢啦。 |
|