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.

Finding Program Install Date in SQL Server

As you can see, the date the program was installed has arrived.

Good luck to everyone in business and life.

154 Views

Yavuz Selim Kart

I try to explain what I know in software and database. I am still improving myself by doing research on many programming languages. Apart from these, I am also interested in Graphic Design and Wordpress. I also have knowledge about SEO and Social media management. In short, I am a determined person who likes to work hard.

You may also like...

Don`t copy text!