清理“临时计划缓存”在 SQL Server 2005 中

发布于 2024-12-18 20:30:31 字数 184 浏览 3 评论 0原文

我发现我的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜柠檬 2024-12-25 20:30:31

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文