16:08 2013-01-06 参考http://doc.chinaunix.net/sqlserver/200810/206034.shtml
DBCC PAGE|IND 参数

 1 DBCC PAGE 参数
 2 (
 3 ['database name'|database id], --can be the actual name or id of the database
 4 file number, --the file number where the page is found
 5 page number, --the page number within the file
 6 print option=[0|1|2|3] --display option; each option provides differing levels of information
 7 )
 8 DBCC IND 参数
 9 (
10 ['database name'|database id], --the database to use
11 table name, --the table name to list results
12 index id, --an index_id from sys.indexes; -1 shows all indexes and IAMs, -2 just show IAMs
13 )
View Code

相关文章: