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!

server and service pack version

Status
Not open for further replies.

adonet

MIS
May 4, 2004
312
US
how to know service pack version? I use "select @@version" only get server version but no service pack
 
You get at funky number don't you?

Go to click on the FAQs/Docs link
select the SQL Server Version Database

That will 'interpret' the results you get from @@version.

You can also find the information on Microsoft's website.

-SQLBill
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top