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.
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 |
|
DaleTurley
Yak Posting Veteran
76 Posts |
Posted - 2010-02-10 : 09:02:53
|
Orselect "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') |
|
|
|
|
|