sp_procedure_params_driven - 如何从 EnterpriseLibrary 中消除这些调用?
我们在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.