清理“临时计划缓存”在 SQL Server 2005 中
我发现我的SQL Server 2005中的“adhoc缓存计划”占用了超过1000MB内存。
SQL Server 2008上有一个解决方案,可以通过设置“优化adhoc”来解决adhoc计划,但在SQL Server 2005中不存在?了解如何清理 SQL Server 2005 中的临时计划吗?
I found that the "adhoc cache plan" in my SQL Server 2005 occupies more than 1000MB memory.
There is a solution on SQL Server 2008 that could solve the adhoc plan by setting the "optimize the adhoc", but it does not exists in SQL Server 2005? Have ideas of how to clean up the adhoc plan in SQL Server 2005?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 DBCC FREESYSTEMCACHE('SQL Plans'); 删除临时查询的缓存计划,同时保留存储过程计划。
You can use
DBCC FREESYSTEMCACHE('SQL Plans');
to drop the cached plans for adhoc queries while leaving stored procedure plans alone.