DBCC FREESESSIONCACHE

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

Topic link iconTransact-SQL Syntax Conventions

Syntax

DBCC FREESESSIONCACHE [ WITH NO_INFOMSGS ]

Arguments

  • WITH NO_INFOMSGS
    Suppresses all informational messages.

Permissions

Requires membership in the sysadmin fixed server role.

Examples

The following example flushes the distributed query cache.

USE AdventureWorks;
GO
DBCC FREESESSIONCACHE WITH NO_INFOMSGS;
GO

See Also

Reference

DBCC (Transact-SQL)

Help and Information

Getting SQL Server 2005 Assistance