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 |
Naanan
Starting Member
3 Posts |
Posted - 2006-12-11 : 14:23:01
|
I was wondering if there is a way to tell what service pack that I am running. Running SQL server 2000.Thanks |
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2006-12-11 : 14:28:30
|
Yes. Read about SERVERPROPERTY function in Books Online.select serverproperty('ProductLevel')or simplyselect @@versionPeter LarssonHelsingborg, Sweden |
 |
|
itsonlyme4
Posting Yak Master
109 Posts |
Posted - 2006-12-11 : 15:45:32
|
http://support.microsoft.com/default.aspx?scid=kb;en-us;q321185 |
 |
|
ToddNelson
Starting Member
2 Posts |
Posted - 2006-12-12 : 15:11:53
|
This will do the trick as well.SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY('productlevel'), SERVERPROPERTY ('edition') |
 |
|
|
|
|