SQL server 2016 -T1117 and -T1118

SQL server 기본 세팅이던 T1117 과 T1118이 SQL 2016에서 변경 되었습니다.

기본적으로 SQL server 2016 Install 시에 둘다 enable이 되는데요.

이를 확인하기 위해서는 다음 script를 실행하시면 됩니다.

Is_Mixed_Page_Allocation_on : 0 = T1118(Enable)

Is_autogrow_all_files : 1 = T1117(Enable)

tempdb_setting

1
2
3
4
5
SELECT name, is_mixed_page_allocation_on
FROM sys.databases
WHERE name='Tempdb'
SELECT is_autogrow_all_files
FROM tempdb.sys.filegroups

https://blogs.msdn.microsoft.com/psssql/2016/03/15/sql-2016-it-just-runs-faster-t1117-and-t1118-changes-for-tempdb-and-user-databases/