什么可能导致函数导入性能缓慢?

发布于 2024-11-26 14:37:08 字数 105 浏览 2 评论 0原文

我有一个存储过程,当我单独运行它时,它会在几毫秒后完成执行。但是,一旦我将存储过程导入 EF 并使用相同的参数调用它,大约需要 5 分钟才能完成。我是否需要调整某种设置,或者是什么导致了这种缓慢?

I have a stored procedure that finishes execution after a few ms when I run it by itself. However, once I import the stored procedure into EF and call it with the same exact parameters, it takes like 5 minutes to finish. Is there some kind of setting I need to tweak or what is causing this slowness?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

自控 2024-12-03 14:37:08

我见过有人在 SQL Server 的缓存执行计划错误时遇到此问题。人们似乎建议运行以下命令来修复它:

DBCC DROPCLEANBUFFERS
DBCC FREEPROCCACHE

请参阅 从 Web 调用时存储过程速度较慢,从 Management Studio 调用时速度较快以获得更完整的答案。

I've seen people have this issue when SQL Server has a bad cached execution plan. People seem to recommend running the following commands to fix it:

DBCC DROPCLEANBUFFERS
DBCC FREEPROCCACHE

See Stored procedure slow when called from web, fast from Management Studio for a more complete answer.

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