Thursday, January 04, 2007 - Posts

Determine SQL Server Version and SP level

I always forget this so just posting to remind myself later. :) SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition') Also the this command will get a the basics. SELECT @@VERSION Sources: Read More

with 0 Comments