When the SQL Server instance was installed?

Please use following DMV to find when SQL Server instance was installed.


select @@SERVERNAME as 'Server Name', create_date as 'SQL Server Installation Date' from sys.server_principals with (nolock) where name = 'NT AUTHORITY\SYSTEM'



Comments