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)
 Service Pack Installed

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 simply

select @@version


Peter Larsson
Helsingborg, Sweden
Go to Top of Page

itsonlyme4
Posting Yak Master

109 Posts

Posted - 2006-12-11 : 15:45:32
http://support.microsoft.com/default.aspx?scid=kb;en-us;q321185
Go to Top of Page

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')
Go to Top of Page
   

- Advertisement -