Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to check SQL server patch level? 1

Status
Not open for further replies.

zacca

Technical User
Dec 25, 2003
333
HK
Hi there,

I'm very new to SQL server, vendor just help to built a MS SQL server for me.

How can I check if SQL SP3a is installed or not?

Many thanks!
 
run the following ...

Code:
SELECT 'SQL Server '
+ CAST(SERVERPROPERTY('productversion') AS VARCHAR) + ' - '
+ CAST(SERVERPROPERTY('productlevel') AS VARCHAR) + ' ('
+ CAST(SERVERPROPERTY('edition') AS VARCHAR) + ')'

then check your findings against the info at this link ...



Thanks

J. Kusch
 

Run select @@version to get sql server version. Each version 8.00.xxx refers to the service pack
 
Hi Jay Kusch,

I run your procedures & got the info as follows:
SQL Server 8.00.760 - SP3 (Standard Edition)

Is this SP3 means SP3 only or SP3a?

Many thanks!
 
It could be either since SP3 and SP3a are both 8.00.760 versions. I know ... Confusing!

Thanks

J. Kusch
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top