Questions tagged «dbcc»

4
为什么“ DbccFilesCompact”状态为“已暂停”?
我正在600G数据文件上运行SHRINK文件。 目前,状态报告为“暂停”,并sys.dm_exec_requests.percent_complete为DbccFilesCompact命令会报告它正在运行(但很慢) 有没有办法检查为什么它被挂起以及如何使其运行更流畅? 仅供参考 -用于状态查询的SQL查询 select T.text, R.Status, R.Command, DatabaseName = db_name(R.database_id) , R.cpu_time, R.total_elapsed_time, R.percent_complete from sys.dm_exec_requests R cross apply sys.dm_exec_sql_text(R.sql_handle) T order by Command

2
修复数据库中不一致的页面
我们有一个SQL 2000 DB。服务器因RAID阵列故障而崩溃。现在,当我们运行DBCC CHECKDB时,我们得到一个错误,即9页中有27个一致性错误。 在这些页面上运行DBCC PAGE时,会得到以下信息: Msg 8939, Level 16, State 106, Line 1 Table error: Object ID 1397580017, index ID 2, page (1:8404521). Test (m_freeCnt == freeCnt) failed. Values are 2 and 19. Msg 8939, Level 16, State 108, Line 1 Table error: Object ID 1397580017, index ID 2, …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.