SQL Server 2000 SQL Profiler 过滤器被忽略
我无法过滤数据库中的事件。
创建跟踪时,我在过滤器选项卡中指定“数据库名称”并添加我的数据库名称“pr200”。
但是,探查器似乎忽略了此信息并继续显示来自所有数据库的事件。
我缺少什么?
I am not able to filter events in my database.
When creating a trace, I specify a "Database Name" in the filters tab and add my database name, "pr200".
However, the profiler seems to ignore this information and keeps showing events from all databases.
What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
过滤 dbid 而不是 dbname,分析器内似乎存在错误。
使用
sp_helpdb '数据库名称'
查找给定数据库名称的 dbid。
Filter for dbid instead of dbname, seems there is a bug inside the profiler.
Use
sp_helpdb 'db_name'
to find the dbid for a given database name.