how to find when the SQL server Last started?

  • how to find when the SQL server Last started?

    thanks in advance !!!!!!!!!!!!!

  • You can simply check it by tempdb creation date time. 🙂

  • another way

    select sqlserver_start_time from sys.dm_os_sys_info

  • Login date of any of the system processes (session_id 1 is easy enough)

    Creation date_time of TempDB

    There are others, but those are among the easiest (and work on all current versions of SQL)

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • Also you can find server start time in SQL server Error log.

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply