SQL 事件探查器模板文件格式
有谁知道用于保存 SQL Profiler 模板(不是 Profiler 跟踪文件)的文件格式的信息吗?或者通过 C# 创建或解析它们的方法?
非常感谢。
Does anyone have information on the file format used to hold SQL Profiler Templates (NOT Profiler trace files)? Or a way to create or parse these via C#?
Thanks very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不可以,但您可以使用
sp_trace%
系列存储过程以编程方式创建和运行跟踪(如果有帮助的话)。该过程类似于
sp_trace_create
->sp_trace_setevent
、sp_trace_setfilter
->sp_trace_setstatus
您还可以调查扩展事件。学习曲线有点陡峭,但它们允许比 SQL 跟踪更细粒度的数据收集,至少对于某些事件类型而言。
No, but you can programmatically create and run traces w/ the
sp_trace%
family of stored procedures, if that helps at all.The process goes something like
sp_trace_create
->sp_trace_setevent
,sp_trace_setfilter
->sp_trace_setstatus
You might also investigate extended events. The learning curve is a little steep, but they allow for more fine-grained data collection than a SQL trace, for some event types at least.