Finding Program Install Date in SQL Server
Hello everyone,
In this article, I will give information about finding the installation date of the program in SQL Server.
We may need to learn the installation date of our server in SQL Server.
You can easily do this using the query below.
SELECT createdate AS [SQL Server Install Date]
FROM sys.syslogins
WHERE [sid] = 0x010100000000000512000000;
When you run the query you will get the following result.
As you can see, the date the program was installed has arrived.
Good luck to everyone in business and life.