<font color=red>请小心!这有可能数据库出点问题!</font>
我遇到过一次,差点把数据库毁了!
建议:
用dbcc checkdb(databasenaneme)
dbcc checktable(tablename)
检查数据库.
检查死锁原因:触发器、存储过程等可能诱发的死锁!
比如:
begin tran
select * from a
update a where ...
commit
类似的情况可能引起死锁!
用select object_name(数值)看到死锁哪个表!