1 out of 1 rated this helpful - Rate this topic

DBCC DROPCLEANBUFFERS (Transact-SQL)

Removes all clean buffers from the buffer pool.

Topic link icon Transact-SQL Syntax Conventions


DBCC DROPCLEANBUFFERS [ WITH NO_INFOMSGS ]
WITH NO_INFOMSGS

Suppresses all informational messages.

Use DBCC DROPCLEANBUFFERS to test queries with a cold buffer cache without shutting down and restarting the server.

To drop clean buffers from the buffer pool, first use CHECKPOINT to produce a cold buffer cache. This forces all dirty pages for the current database to be written to disk and cleans the buffers. After you do this, you can issue DBCC DROPCLEANBUFFERS command to remove all buffers from the buffer pool.

DBCC DROPCLEANBUFFERS returns:

DBCC execution completed. If DBCC printed error messages, contact your system administrator.

Requires membership in the sysadmin fixed server role.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.