July 7, 2003 at 10:48 am
My database: SQL Server 2000 Enterprise Edition
Question:
How do I know which service pack/patch is installed in my database? Could query this information through SQL?
Thanks,
Rao
July 7, 2003 at 11:34 am
Run this query:
select @@version
Then take the results and compare them to the list at:
http://www.sqlsecurity.com go to the SQLSecurity Checklist.
This list is also on Microsoft's site and it might be on this site also, but I don't know the paths to them.
-SQLBill
July 7, 2003 at 12:14 pm
Thank you SQLBILL. I do appreciate your quick answer.
Once again Thanks,
Rao
Run this query:
select @@version
Then take the results and compare them to the list at:
http://www.sqlsecurity.com go to the SQLSecurity Checklist.
This list is also on Microsoft's site and it might be on this site also, but I don't know the paths to them.
-SQLBill
[/quote]
July 7, 2003 at 12:38 pm
BTW- I just found this cool page of information on this site.
http://www.sqlservercentral.com/columnists/dPriyankara/versionservicepack.asp
Specifically, it shows the use of
SELECT SERVERPROPERY('productlevel')
That will return the 'readable' version of your SQL Server product. I ran that command on my SQL Server and it returned:
SP3
Plain and simple.
-SQLBill
-SQLBill
July 7, 2003 at 1:01 pm
SQLBill,
I also found the followign link at MS. This link explains how to find the version and release numbers for different versions of SQL Server.
http://support.microsoft.com/default.aspx?scid=kb%3ben-us%3b321185#6
I am new to using this e-mail and I did not know how to put a link. Please cut and paste the above link into your browser.
Rao
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply