|
1 | 1 |
|
2 | 2 | -- SQL Server 2016 SP2 Diagnostic Information Queries |
3 | 3 | -- Glenn Berry |
4 | | --- Last Modified: June 3, 2019 |
| 4 | +-- Last Modified: July 12, 2019 |
5 | 5 | -- https://www.sqlskills.com/blogs/glenn/ |
6 | 6 | -- http://sqlserverperformance.wordpress.com/ |
7 | 7 | -- Twitter: GlennAlanBerry |
@@ -63,15 +63,16 @@ SELECT @@SERVERNAME AS [Server Name], @@VERSION AS [SQL Server and OS Version In |
63 | 63 | ------ |
64 | 64 |
|
65 | 65 | -- SQL Server 2016 Builds |
66 | | --- Build Description Release Date URL to KB Article |
67 | | --- 13.0.5026.0 SP2 RTM 4/24/2018 https://bit.ly/2FEvN2q |
68 | | --- 13.0.5149.0 SP2 CU1 5/30/2018 https://support.microsoft.com/en-us/help/4135048/cumulative-update-1-for-sql-server-2016-sp2 |
69 | | --- 13.0.5153.0 SP2 CU2 7/16/2018 https://support.microsoft.com/en-us/help/4340355 |
70 | | --- 13.0.5216.0 SP2 CU3 9/20/2018 https://support.microsoft.com/en-us/help/4458871 |
71 | | --- 13.0.5233.0 SP2 CU4 11/13/2018 https://support.microsoft.com/en-us/help/4464106/cumulative-update-4-for-sql-server-2016-sp2 |
72 | | --- 13.0.5264.1 SP2 CU5 1/23/2019 https://support.microsoft.com/en-us/help/4475776/cumulative-update-5-for-sql-server-2016-sp2 |
73 | | --- 13.0.5292.0 SP2 CU6 3/19/2019 https://support.microsoft.com/en-us/help/4488536/cumulative-update-6-for-sql-server-2016-sp2 |
74 | | --- 13.0.5337.0 SP2 CU7 5/22/2019 https://support.microsoft.com/en-us/help/4495256/cumulative-update-7-for-sql-server-2016-sp2 |
| 66 | +-- Build Description Release Date URL to KB Article |
| 67 | +-- 13.0.5026.0 SP2 RTM 4/24/2018 https://bit.ly/2FEvN2q |
| 68 | +-- 13.0.5149.0 SP2 CU1 5/30/2018 https://support.microsoft.com/en-us/help/4135048/cumulative-update-1-for-sql-server-2016-sp2 |
| 69 | +-- 13.0.5153.0 SP2 CU2 7/16/2018 https://support.microsoft.com/en-us/help/4340355 |
| 70 | +-- 13.0.5216.0 SP2 CU3 9/20/2018 https://support.microsoft.com/en-us/help/4458871 |
| 71 | +-- 13.0.5233.0 SP2 CU4 11/13/2018 https://support.microsoft.com/en-us/help/4464106/cumulative-update-4-for-sql-server-2016-sp2 |
| 72 | +-- 13.0.5264.1 SP2 CU5 1/23/2019 https://support.microsoft.com/en-us/help/4475776/cumulative-update-5-for-sql-server-2016-sp2 |
| 73 | +-- 13.0.5292.0 SP2 CU6 3/19/2019 https://support.microsoft.com/en-us/help/4488536/cumulative-update-6-for-sql-server-2016-sp2 |
| 74 | +-- 13.0.5337.0 SP2 CU7 5/22/2019 https://support.microsoft.com/en-us/help/4495256/cumulative-update-7-for-sql-server-2016-sp2 |
| 75 | +-- 13.0.5366.0 SP2 CU7 + Security Update 7/9/2019 https://support.microsoft.com/en-us/help/4505222/security-update-for-sql-server-2016-sp2-cu7-gdr-july-9-2019 |
75 | 76 |
|
76 | 77 |
|
77 | 78 |
|
@@ -220,6 +221,10 @@ EXEC sys.xp_readerrorlog 0, 1, N'Database Instant File Initialization'; |
220 | 221 | -- This should be enabled in the vast majority of cases |
221 | 222 | -- SQL Server 2016 and newer lets you enable this during the SQL server installation process |
222 | 223 |
|
| 224 | +-- Note: This query won't return any results if the SQL Server error log has been recycled |
| 225 | +-- Query 8 has a instant_file_initialization_enabled column that will show the status of IFI |
| 226 | + |
| 227 | + |
223 | 228 | -- Database Instant File Initialization |
224 | 229 | -- https://bit.ly/2nTX74y |
225 | 230 |
|
|
0 commit comments