记录一段时间内执行的所有SQL
在 MS SQL Server 2008 中,我想调查和调整应用程序在有限时间间隔内执行的查询。我是否可以(例如从 SQL Server Management Studio)生成所有正在执行的 SQL 以及每个查询花费多长时间(以及它们执行时使用的参数)的日志?
In MS SQL Server 2008, I would like to investigate and tune the queries that are being executed by an application in a limited time interval. Can I, e.g. from SQL Server Management Studio, generate a log of all SQL being executed and how long time each query took (and which parameters they were executed with)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Profiler 来实现此目的 - 从 SSMS 转到工具 - > SQL Server 探查器。
You can use Profiler for this purpose - from SSMS, go to Tools -> SQL Server Profiler.
您需要使用 MS SQL Profiler 来执行此操作
http://msdn.microsoft。 com/en-us/library/ms181091.aspx
You need to use the MS SQL Profiler to do this
http://msdn.microsoft.com/en-us/library/ms181091.aspx