- Introduction
- Undocumented DBCC commands:
- DBCC allocdump
- DBCC bhash
- DBCC buffer
- DBCC bytes
- DBCC dbinfo
- DBCC dbtable
- DBCC delete_row
- DBCC des
- DBCC extentchain
- DBCC extentcheck
- DBCC extentdump
- DBCC extentzap
- DBCC findnotfullextents
- DBCC help
- DBCC ind
- DBCC locateindexpgs
- DBCC lock
- DBCC log
- DBCC page
- DBCC pglinkage
- DBCC procbuf
- DBCC prtipage
- DBCC pss
- DBCC rebuildextents
- DBCC resource
- DBCC show_bucket
- DBCC tab
- DBCC undo
- Literature
Introduction
In this article I want to tell you about some useful undocumented
DBCC commands, and how you can use these commands in SQL Server 6.5
for administering and monitoring.DBCC is an abbreviation of a DataBase Consistency Checker.
This is the description of DBCC from SQL Server Books Online:
|
Undocumented DBCC commands
1. DBCC allocdumpThis command can be used to display all extents on an allocation page.
Syntax:
|
where
dbid – is the database id
page – is the allocation page number
Example:
|
This command can check integrity of and optionally print the buffer hash
table.
Syntax:
|
where
print_bufs – display all buffers (default)
no_print – display only buffers with problems
bucket_limit – number of buffers allowed in a bucket (default = 0)
Example:
|
This command can be used to print buffer headers and pages from the
buffer cache.
Syntax:
|
where
dbid|dbname – database name or database ID
(0 will show data for all databases)
objid|objname – object ID or object name
(0 will show data for all objects)
nbufs – number of buffers to examine
printopt – print option
0 print out only the buffer header and page header
(default)
1 print out each row separately and the offset table
2 print out each row as a whole and the offset table
buftype – buffer type to print
Example:
|
This command can be used to dump out bytes from a specific address.
Syntax:
|
where
startaddress – starting address to dump
length – number of bytes to dump
Example:
|
Print DBINFO structure for a specified database.
Syntax:
|
where
dbname – is the database name.
Example:
|
This command prints out the contents of the DBTABLE structure.
Syntax:
|
where
dbid|dbname – database name or database ID
Example:
|
The DBTABLE structure has an output parameter called dbt_open.
This parameter keeps track of how many users are in the database.
Look at here for more details:
FIX:
Database Usage Count Does Not Return to Zero
This command can be used to delete an index or data row by either
a row number or an offset on a page. DBCC delete_row is the nonloged
command, so you can delete particular row without placed this row into
transactional log. Use this command at your own risk!
Syntax:
|
where
dbid|dbname – database ID or database name
page – logical page number
delete_by_row – how delete: by row or by offset
(1 – the next parameter is row number)
(0 – the next parameter is offset on the page)
rownum – row number or offset
Example:
|
This command used to print the contents of the specified DES (descriptor).
Syntax:
|
where
dbid|dbname – database ID or database name
objid – object ID
Example:
|
This command shows extent header info for all extents in use by
the specified object.
Syntax:
|
where
dbid – database ID
objid – object ID
indexid – index ID
sort – report on state of the sort bit
(0 don’t include this info)
(1 do report on sort bit status)
display – what to report
(0 display the count only)
(1 display the extents)
order – (optional) order to follow the chain
(0 descending, 1 ascending)
Example:
|
This command has the same output as extentchain and examine all extents
on allocation pages for specified object.
Syntax:
|
where
dbid – database ID
objid – object ID
indexid – index ID
sort – state of the sort bit
(0 don’t report this, 1 report sort bit status)
Example:
|
This command shows an extent dump.
Syntax:
|
where
dbid – database ID
page – the number of a page controlled by the extent in question
Example:
|
This command can be used to clear all extents matching the parameter values.
Syntax:
|
where
dbid – database ID
objid – object ID
indexid – index ID
sort – state of the sort bit
Example:
|
This command shows extend id of extents allocated to the specified
objid that are not full. If objid is specified, then an indexid
can be specified, or all will do all of the indexes of table.
If objid is all, then all database tables are done.
Syntax:
|
where
dbid – database ID
objid – object ID
indexid – index ID
sort – state of the sort bit
Example:
|
DBCC HELP returns syntax information for the specified DBCC statement.
Syntax:
|
This is the example:
|
Look at here for more details:
DBCC HELP
(T-SQL)
This command shows all pages in use by indexes of the specified tabname.
Syntax:
|
where
dbid|dbname – database ID or database name
objid – object ID
printopt – print option
(0 print out only the buffer header and page header (default)
1 print page headers, page data in row format, and offset
tables
2 print page headers, unformatted page data, and offset
tables)
Example:
|
This command prints all references in the index to the specified page.
Syntax:
|
where
dbid – database ID
objid – object ID
page – logical page number of the page for which index
references are being searched
indexid – index ID
level – level within the index to search for references
Example:
|
This command can be used to print out lock chains.
Syntax:
|
Example:
|
This command is used to view the transactional log for the specified
database.
|
PARAMETERS:
Dbid or dbname – Enter either the dbid or the name of the database
in question.
type – is the type of output:
0 – minimum information (operation, context, transaction id)
1 – more information (plus flags, tags, row length)
2 – very detailed information (plus object name, index name,
page id, slot id)
3 – full information about each operation
4 – full information about each operation plus hexadecimal dump
of the current transaction log’s row.
by default type = 0
To view the transaction log for the master database, you can run the
following command:
|
You can use this command to view the data page structure.
|
PARAMETERS:
Dbid or dbname – Enter either the dbid or the name of the database
in question.
Pagenum – Enter the page number of the SQL Server page that is to
be examined.
Print option – (Optional) Print option can be either 0, 1, or 2.
0 – (Default) This option causes DBCC PAGE to print
out only the page header information.
1 – This option causes DBCC PAGE to print out the
page header information, each row of information
from the page, and the page’s offset table. Each
of the rows printed out will be separated from
each other.
2 – This option is the same as option 1, except it
prints the page rows as a single block of
information rather than separating the
individual rows. The offset and header will also
be displayed.
Cache – (Optional) This parameter allows either a 1 or a 0 to be
entered.
0 – This option causes DBCC PAGE to retrieve the page
number from disk rather than checking to see if it is
in cache.
1 – (Default) This option takes the page from cache if it
is in cache rather than getting it from disk only.
Logical – (Optional) This parameter is for use if the page number
that is to be retrieved is a virtual page rather then a
logical page. It can be either 0 or 1.
0 – If the page is to be a virtual page number.
1 – (Default) If the page is the logical page number.
In this example one data page is viewed from the table titleauthor,
database pubs.
|
This is the result from my computer:
|
Look at here for more details:
Data
page structure in MS SQL 6.5
This command can be used to display the page chain, performing
integrity checks during traversal.
Syntax:
|
where
dbid – database ID
start – page number with which to start
number – number of pages to examine, or 0 if target is specified
printopt – print option
(0 display only the count of pages scanned
1 display information about the last 16 pages scanned
2 display all page numbers in the scan)
target – the particular page we are looking for
order – traversal order
(0 descending, 1 ascending)
Example:
|
This command prints procedure buffer headers and proc-headers from
the procedure cache.
Syntax:
|
where
dbid – database ID
objid – object ID
nbufs – number of buffers to print
printopt – print option
(0 print out only the proc buff and proc header (default)
1 print out proc buff, proc header and contents of buffer)
Example:
|
This command prints the page number pointed to by each row on the
specified index page.
Syntax:
|
where
dbid – database ID
objid – object ID
indexid – index ID
indexpage – the logical page number of the index page to dump
Example:
|
This command shows info about processes currently connected to the
dataserver. Structure is the source of data contained in the sysprocesses
table.
Syntax:
|
where
suid – server user ID
spid – server process ID
printopt – print option
(0 standard output,
1 all open DES’s and current sequence tree)
Example:
|
DBCC rebuildextents rebuilds an object’s extent chain.
You should set READ ONLY option for your database, before run this command.
Syntax:
|
where
dbid – database ID
objid – object ID
indexid – index ID
Example:
|
This command shows dataserver level RESOURCE, PERFMON and DS_CONFIG
info. RESOURCE shows addresses of various data structures used by
the server. PERFMON structure contains master..spt_monitor
field info. DS_CONFIG structure contains master..syscurconfigs
field info.
Syntax:
|
Example:
|
This command shows hash bucket info for the specified pageid.
Syntax:
|
where
dbid|dbname – database ID or database name
page – logical page number of page being looked for
lookup_type – how to conduct search
(1 use hash algorithm to look in the bucket the page should be in
2 scan the entire buffer cache)
Example:
|
You can use the following undocumented command to view the data
pages structure (in comparison with DBCC PAGE, this command will
return information about all data pages for viewed table, not
only for particular number):
|
where dbname – is the database name,
objname – is the table name,
printopt – is the type of the output:
0 – minimum information (only the pages headers, the total
number of data pages in this table and the total number
of data rows in this table)
1 – more information (plus full rows structure)
2 – as printopt = 1, but without rows separation (full dump)
by default printopt = 0
Example:
|
Syntax:
|
Literature
1. “What are all the dbcc commands for SQL Server?” NTFAQ
http://www.ntfaq.com/Articles/Index.cfm?ArticleID=141862. INFO: Description of DBCC PAGE Command
http://support.microsoft.com/support/kb/articles/Q83/0/65.ASP3. THE UNAUTHORIZED DOCUMENTATION OF DBCC
http://user.icx.net/~huntley/dbccinfo.htm4. The Totally Unauthorized List of Sybase DBCC Commands
http://www.kaleidatech.com/dbcc1.htm5. The Totally Unauthorized List of Sybase DBCC Commands
http://www.kaleidatech.com/dbcc2.htm6. The Totally Unauthorized List of Sybase DBCC Commands
http://www.kaleidatech.com/dbcc3.htm7. FIX: Database Usage Count Does Not Return to Zero
http://support.microsoft.com/support/kb/articles/Q175/3/03.ASP8. DBCC HELP (T-SQL)
http://msdn.microsoft.com/library/psdk/sql/dbcc_10.htm9. INFO: Description of the DBCC PGLINKAGE Command
http://support.microsoft.com/support/kb/articles/Q83/1/15.ASP