- 论坛徽章:
- 0
|
1 Check the server error log for other errors that may have been raised prior
to the 695 error. Save the entire error log.
2 Obtain page information by running dbcc page as soon as possible, using
the database ID and page number shown in the message:
1> dbcc page (<db_id>, <page_number>, 0, 1, 1, -1)
2> go
3 To determine the scope of the problem, locate the device on which the
database resides, and check if any other databases use the same device.
Refer to “How to Determine Which Physical Devices a Database is On” in
the Encyclopedia of Tasks chapter.
4 Check that the device is partitioned correctly. See “Correct Use of Raw
Partitions” in the Encyclopedia of Tasks chapter .
5 Run dbcc log to find the history of transactions against this page.
6 To determine the full extent of the corruption, run dbcc checkstorage, the
dbcc checkdb and dbcc checkalloc commands, or dbcc checktable and dbcc
tablealloc) as soon as possible.
7 To check if this error is a result of hardware failure, examine your
operating system error log and correct hardware problems. See “Checking
the Operating System Error Log” in the Encyclopedia of Tasks chapter for
assistance. Also see Error 605 for a discussion of potential causes of
hardware error.
按照这个步骤做把。
主要就DBCC的这几条命令的了。
检查设备把。也许要重建呢。。。尽量争取能备份出数据。 |
|