File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1061,6 +1061,17 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10611061 FROM sys .dm_os_sys_info AS osi
10621062 WHERE osi .sql_memory_model_desc = N ' CONVENTIONAL' /* Conventional means not using LPIM */
10631063 AND @physical_memory_gb >= 32 /* Only recommend for servers with >=32GB RAM */ ;
1064+
1065+ INSERT
1066+ #server_info
1067+ (
1068+ info_type,
1069+ value
1070+ )
1071+ SELECT
1072+ N ' Memory Model' ,
1073+ osi .sql_memory_model_desc
1074+ FROM sys .dm_os_sys_info AS osi;
10641075 END ;
10651076
10661077 /* Check if Instant File Initialization is enabled (on-prem only) */
@@ -1281,10 +1292,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12811292 osi .committed_target_kb / 1024 .0 / 1024 .0
12821293 )
12831294 ) +
1284- N ' GB' +
1285- N ' , ' +
1286- osi .sql_memory_model_desc +
1287- N ' enabled'
1295+ N ' GB'
12881296 FROM sys .dm_os_sys_info AS osi;
12891297
12901298 /* Check for important events in default trace (Windows only for now) */
You can’t perform that action at this time.
0 commit comments