sql profiler 2008 不接受命令行启动中的模板名称
我正在尝试从命令行启动启动 sql profiler 2008。 我使用的语法:
C:\Program Files\Microsoft SQL Server\100\Tools\Binn>profiler90 /S server /D dbname /U sa /P 密码 /T "C:\Documents and Settings\template.tdf"
实际结果: 探查器打开,成功登录,但我仍然被迫选择一个模板。
预期结果: 是否需要使用任何其他命令行参数来强制探查器采用指定的模板。
编辑:
GBN:感谢您的建议。
我做了以下更改 profiler90 更改为 profiler 修改了模板路径为: C:\Documents and Settings\myuser\Application Data\Microsoft\SQL Profiler\10.0\Templates\Microsoft SQL Server\100templatename
上面指定的物理文件夹包含模板文件。
问题仍然存在
I am trying to launch sql profiler 2008 from the command line launch. the syntax I used :
C:\Program Files\Microsoft SQL Server\100\Tools\Binn>profiler90 /S server
/D dbname /U sa /P password /T "C:\Documents and Settings\template.tdf"
actual result:
profiler opens, successful login happens but still I am forced to select a template.
Expected result:
is there any other command line parameter I need to use to force profiler to take up a specified template.
Edit:
GBN: Thanks for the suggestions.
I did the following changes profiler90 changed to profiler modified the template path to : C:\Documents and Settings\myuser\Application Data\Microsoft\SQL Profiler\10.0\Templates\Microsoft SQL Server\100templatename
the physical folder specified above contains the template file.
still the problem persists
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,它起作用了
正确的名称是 /t“模板名称”,而不是模板的物理文件名。
谢谢!
yes, it worked
the correct one is /t "template name" and not the physical file name of the template.
thanks!
GBN:感谢您的建议。
我做了以下更改 profiler90 更改为 profiler 修改了模板路径为: C:\Documents and Settings\myuser\Application Data\Microsoft\SQL Profiler\10.0\Templates\Microsoft SQL Server\100templatename
上面指定的物理文件夹包含模板文件。
问题仍然存在
GBN: Thanks for the suggestions.
I did the following changes profiler90 changed to profiler modified the template path to : C:\Documents and Settings\myuser\Application Data\Microsoft\SQL Profiler\10.0\Templates\Microsoft SQL Server\100templatename
the physical folder specified above contains the template file.
still the problem persists
它是 SQL Server 2008 中的“分析器”,“profiler90"
两者的 /T 开关均表示
因此,由于路径和扩展名的原因,您的交换机看起来是错误的。
编辑:
您是否只尝试过名称?:
.../T "templatename"...
It's "profiler" in SQL Server 2008, "profiler90" in SQL Server 2005
The /T switch for both says
So, it looks like your switch is wrong because of the path and the extension.
Edit:
Have you tried just the name?:
.../T "templatename"...