문제

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

도움이 되었습니까?

해결책

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')
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top