January 20, 2006 at 5:38 am
How to know the service pack of the sql server which is running?:
January 20, 2006 at 5:44 am
SELECT @@VERSION
SP3 = 8.00.760
SP4 = 8.00.2039
SP4 plus embarrassing fix for memory problem in SP4 = 8.00.2040.
You should be on at least SP3
January 20, 2006 at 5:48 am
we tried in sql server 2000 Enterprise Edition
but it just mentioned the version and when it was built but not the service pack.
Is there any other way other than that..
sunder..
January 20, 2006 at 7:19 am
Hello Sunder,
You can also try this query in Query Analyzer
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
also go through this webpage from Microsoft
http://support.microsoft.com/default.aspx?scid=kb;en-us;q321185
Hope this is helpful to you.
Thanks and have a nice day!!!
Lucky
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply