Get Last Restart Of SQL Server Using System Stored Procedure

In this article I describe how to get the start time for SQL Server instance.
  • 2091

In this article I describe how to get the start time for SQL Server instance. There are various ways get when SQL Server was last started. You can run the following command to find start time.

SELECT sqlserver_start_time FROM sys.dm_os_sys_info

Run above command and see, output is like this:

 SQL_Server_StartTime.jpg

© 2020 DotNetHeaven. All rights reserved.