SQL Server 查看实例配置情况的 2 方法
方法 1、
sp_configure;
execute sp_configure;

方法 2、
sys.configurations
select * from sys.configurations
order by name;
go

方法 1、
sp_configure;
execute sp_configure;

方法 2、
sys.configurations
select * from sys.configurations
order by name;
go
