How to check if SP1 for SQL Server 2008 R2 is already installed? -


i have trouble figuring out if sp1 installed. don't think check management studio different application. sql server self has no ui check under "about". :)

any ideas?

there not sp1 sql server 2008 r2 yet.....

but check, can inspect productlevel server property:

select     serverproperty('productlevel')  

this contain rtm original rtm version (as in case sql server 2008 r2 now), or contain info service pack installed.

i typically use sql query:

select       serverproperty('productversion') 'product version',      serverproperty('productlevel') 'patch level',       serverproperty('edition') 'product edition',     serverproperty('buildclrversion') 'clr version',     serverproperty('collation') 'default collation',     serverproperty('instancename') 'instance',     serverproperty('lcid') 'lcid',     serverproperty('servername') 'server name' 

this lists server version, edition, service pack (if applicable) etc. - this:

product version  patch level  product edition             clr version  default collation     instance  lcid  server name 10.50.1617.0       rtm        developer edition (64-bit)  v2.0.50727   latin1_general_ci_as   null     1033  ********* 

update: answer correct when posted - july 2011.

by now, november 2012, there's sql server 2008 r2 service pack 2 available download


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -