Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 SQL 2000 service pack

Author  Topic 

Sun Foster
Aged Yak Warrior

515 Posts

Posted - 2010-02-06 : 05:10:30
How to check what service pack is installed?

khtan
In (Som, Ni, Yak)

17689 Posts

Posted - 2010-02-06 : 05:13:12
print @@version and check the version no against

http://www.sqlteam.com/article/sql-server-versions



KH
[spoiler]Time is always against us[/spoiler]

Go to Top of Page

DaleTurley
Yak Posting Veteran

76 Posts

Posted - 2010-02-10 : 09:02:53
Or

select "Product" = case
when convert(varchar(15) , serverproperty('productversion')) like '9.00%' then 'SQL Server 2005'
when convert(varchar(15) , serverproperty('productversion')) like '8.00%' then 'SQL Server 2000'
end ,
"SQL Edition" = serverproperty('Edition') , "Service Pack" = serverproperty('productlevel')
Go to Top of Page
   

- Advertisement -