SQL Server 查看实例配置情况的 2 方法

方法 1、

         sp_configure;

         execute sp_configure;

         

方法 2、

          sys.configurations

          select * from sys.configurations
          order by name;
          go

          

 

posted on 2014-10-14 22:15  蒋乐兴的技术随笔  阅读(379)  评论(0编辑  收藏  举报

导航