如何查看服务器SET选项的默认值
我读过 BOL 但无法弄清楚。
当我执行 sp_configure 时,它仅显示
这里我看不到 NOCOUNT 或 ANSI_WARNINGS 是否默认设置为 ON。 我怎样才能做到这一点?
谢谢。
I read BOL but could not figure it out.
When i exec sp_configure it shows just
Here I can not see if NOCOUNT or ANSI_WARNINGS are SET ON by befault.
How can I do that?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在此处查看默认值:
http://msdn.microsoft.com/en- us/library/ms190707.aspx
您可以使用以下方式检查您自己的设置:
并且您可以使用 sys.dm_exec_sessions。
You can see the defaults here:
http://msdn.microsoft.com/en-us/library/ms190707.aspx
You can check your own settings using:
And you can check any other session's settings using various columns in sys.dm_exec_sessions.
您必须启用“显示高级选项”并运行 RECONFIGURE
顺便说一句,服务器默认值全部为零(未设置任何内容)。您的客户端或驱动程序自动设置选项,这些选项将覆盖您设置的任何服务器默认值
请参阅此了解更多信息:@@OPTIONS 和 sp_configure 为谁提供不同的输出?
You have to enable "show advanced options" and run RECONFIGURE
The server defaults are all zero (nothing set) by the way. Your client or driver sets options automatically that will override any server defaults you set
See this for more: Who do @@OPTIONS and sp_configure provide different output?