SQL Server Profiler - 列含义
任何人都可以指出描述 IntegerData 和 IntegerData2 列中返回内容的引用。我对它们对 SQL:StmtCompleted 事件的含义特别感兴趣。
Can anyone point to a reference which describes what is being returned in the IntegerData and IntegerData2 columns. I am particularly interested in their meaning for SQL:StmtCompleted event.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它因事件而异。请参阅此处的 SQL:StmtCompleted:
http://msdn.microsoft.com/en-我们/library/ms189886.aspx
It varies by event. See here for SQL:StmtCompleted:
http://msdn.microsoft.com/en-us/library/ms189886.aspx
IntegerData
返回查询返回的实际行数。IntegerData
returns the actual number of rows returned by the query.您可以查看
SQL:StmtCompleted
MSDN 文档:几乎所有其他探查器事件都有类似的规范,位于 SQL Server 事件类参考 MSDN 章节。
You can check out the
SQL:StmtCompleted
MSDN documentation:There are similar specifications for almost all other profiler events, under the SQL Server Event Class Reference MSDN chapter.