Answers:
这两个服务器配置选项均不需要重新启动数据库引擎。RECONFIGURE
在这种情况下,运行就足够了。
exec sp_configure 'show advanced options', 1
go
reconfigure
go
exec sp_configure 'max server memory', 12288
go
exec sp_configure 'max degree of parallelism', 4
go
reconfigure
go
-- the new configuration has taken effect
请参阅BOL以供参考。