sp_procedure_params_driven - 如何从 EnterpriseLibrary 中消除这些调用?

发布于 2024-08-31 14:33:10 字数 302 浏览 3 评论 0原文

我们在 SQL Server Profiler 跟踪中注意到正在调用此过程:

sp_procedure_params_management

每个调用在跟踪中都有 350 多个读取!

我们在 ASP.NET 前端中使用 Microsoft.Practices.EnterpriseLibrary.Data。

我们怎样才能消除这些存储过程调用呢?我们没有在代码中明确调用它。

我正在运行 Sql Server 2005 和 Enterprise Library 3.1.0.0。

We noticed in a SQL Server Profiler trace that this proc is being called:

sp_procedure_params_managed

Each call has 350+ reads in the trace!

We are using Microsoft.Practices.EnterpriseLibrary.Data in an ASP.NET front end.

How can we eliminate these stored procedure calls? We are not explicitly calling it in code.

I'm running Sql Server 2005 and Enterprise library 3.1.0.0.

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

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

发布评论

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

评论(1

笛声青案梦长安 2024-09-07 14:33:10

sp_procedure_params_driven 用于确定存储过程的参数。我猜 Microsoft.Practices.EnterpriseLibrary.Data 使用它来确定存储过程调用的参数是什么。它可能会缓存结果以防止额外的开销。

sp_procedure_params_managed is used determine the stored procedure parameters. I guess the Microsoft.Practices.EnterpriseLibrary.Data uses it to determine what the parameters are for the stored procedure call. It will probably cache the results to prevent extra overhead.

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