Question

I am running SQL Server 2008 R2. How can I find out what is the latest updates I have installed on my SQL Server? Is there some sql command I can enter to findout?

thanks nick

Était-ce utile?

La solution

If you know your installed SQL instance name and connect to it; then run the below command to know the information about installed version/edition

SELECT SERVERPROPERTY('productversion'), 
SERVERPROPERTY ('productlevel'), 
SERVERPROPERTY ('edition')
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top