December 4, 2003 at 4:14 am
when i look my service pack version of my sqlsever by typing Select @@version it gives me sp4 but i think that is o/s service pack,plz suggest how i can see my sql server
service pack version.
thanx
December 4, 2003 at 4:38 am
SELECT @@version is just fine.
See http://www.sqlservercentral.com/forum/link.asp?TOPIC_ID=18417
You can compare your result with this here http://www.sqlsecurity.com/DesktopDefault.aspx?tabindex=3&tabid=4
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
December 4, 2003 at 5:37 am
but through em it shows sp3 why it shows sp4 in select @@version
December 4, 2003 at 5:42 am
Are you sure you're looking both ways at the same server?
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
December 4, 2003 at 6:57 am
Here is the readout of a SQL Server:
Microsoft SQL Server 2000 - 8.00.818 (Intel X86)
Dec 17 2002 14:22:05
Copyright (c) 1988-2003 Microsoft Corporation
Developer Edition on Windows NT 5.0 (Build 2195: Service Pack 4)
The section that tells you what version of SQL Server is this one:
Microsoft SQL Server 2000 - 8.00.818 (Intel X86)
Dec 17 2002 14:22:05
Copyright (c) 1988-2003 Microsoft Corporation
Developer Edition
The significant portion you are looking for is the number that looks like 8.00.818 because it is this number that tells you the Service Pack + Hotfix level.
Using SELECT @@VERSION also tells you the OS and its service pack. That's the portion found:
Windows NT 5.0 (Build 2195: Service Pack 4)
From this I know the SQL Server is running on a Windows 2000 system (albeit I don't know if it's Professional, Server, etc.) and I know that the OS has SP4 applied.
So you get both both info about SQL Server and the OS using @@VERSION.
K. Brian Kelley, GSEC
http://www.truthsolutions.com/
Author: Start to Finish Guide to SQL Server Performance Monitoring
Edited for Frank.
Edited by - bkelley on 12/04/2003 07:06:07 AM
K. Brian Kelley
@kbriankelley
December 4, 2003 at 7:01 am
Did I ever mention I hate horizontal scrolling
SELECT @@version returns here in full
------------------------------------------------------------------------
Microsoft SQL Server 2000 - 8.00.760 (Intel X86)
Dec 17 2002 14:22:05
Copyright (c) 1988-2003 Microsoft Corporation
Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 3)
(1 row(s) affected)
Frank
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
December 5, 2003 at 6:26 am
try
select SERVERPROPERTY ('productlevel')
this will give you the SQL Server Service Pack
Bryan
December 5, 2003 at 9:58 am
Hey Brian,
Your on 8.00.818?
What's that?
I thought the latest was 8.00.760? (SP3)
Is that SP3a?
Isaiah
Edited by - iadams on 12/05/2003 10:09:32 AM
-Isaiah
December 5, 2003 at 11:04 am
If you apply the cumulative patch for SQL Server, MS03-031, you'll get the .818 version. On SQL Server 2000, SP 3/3a is required. Here's the link:
http://www.microsoft.com/technet/treeview/default.asp?url=/technet/security/Bulletin/MS03-031.asp
K. Brian Kelley, GSEC
http://www.truthsolutions.com/
Author: Start to Finish Guide to SQL Server Performance Monitoring
K. Brian Kelley
@kbriankelley
Viewing 9 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply