1 out of 2 rated this helpful - Rate this topic

DBCC FREESESSIONCACHE (Transact-SQL)

Flushes the distributed query connection cache used by distributed queries against an instance of Microsoft SQL Server.

Topic link icon Transact-SQL Syntax Conventions


DBCC FREESESSIONCACHE [ WITH NO_INFOMSGS ]
WITH NO_INFOMSGS

Suppresses all informational messages.

Requires membership in the sysadmin fixed server role.

The following example flushes the distributed query cache.

USE AdventureWorks2008R2;
GO
DBCC FREESESSIONCACHE WITH NO_INFOMSGS;
GO
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.