How do I determine what SP our SQL 6.5 and 7.0 has?

How do I determine what SP our SQL 6.5 and 7.0 has?

Post by Bo Edstro » Tue, 02 May 2000 04:00:00



Hi,

We have some SQL 6.5 and 7.0 servers and some we are not sure what
service pack is installed.

Any easy way to check that?

Thanks,
Bo

 
 
 

How do I determine what SP our SQL 6.5 and 7.0 has?

Post by Neil Pik » Tue, 02 May 2000 04:00:00


Bo,

Quote:> We have some SQL 6.5 and 7.0 servers and some we are not sure what
> service pack is installed.

Q.     What SQL Server servicepack am I running?  How can I get new ones?


table.  Or look at the top of the latest SQL errorlog file.  Or do a file
properties on the sqlservr.exe file.  All should return the same value.

For SQL Olap versions do a help/about in Olap Manager.

If it isn't listed here, then it is a "hot-fix" build that Microsoft PSS has
given you to fix a specific problem.  Hot-fix releases are NOT regression
tested, so they should only be applied to production systems to fix a known
problem and under the advice of Microsoft PSS.  Hot-fixes (password protected)
are on ftp.microsoft.com/bussys/sql/transfer.  Microsoft PSS will provide
passwords as long as you prove you have the bug concerned.  The reason for
restricting hot-fixes this way is so that PSS can track customers who run them
and let them know when a regression tested fix is available.

Service Packs can be downloaded via http://support.microsoft.com or
ftp://ftp.microsoft.com/bussys/sql

Note that you can't apply 6.5 SP4 or earlier to either SBS or EE versions of
SQL Server.  6.5 SP5 and above and all 7.x/2000 SP's are compliant with all
these releases - i.e. can be applied to any model of SQL Server (Workstation,
Server, EE, SBS etc.)

8.00.047  SQL Server 8.0/2000 EAP4
8.00.078  SQL Server 8.0/2000 EAP5
8.00.100  SQL Server 8.0/2000 Beta 2

7.50.198  SQL Server 7.5/2000 Beta 1

7.00.517  SQL Server 7.0 Beta 3
7.00.583  SQL Server 7.0 RC1
7.00.623  SQL Server 7.0 "gold" release
7.00.677  MSDE from Office 2000
7.00.689  SQL Server 7.0 SP1 Beta
7.00.699  SQL Server 7.0 SP1
7.00.835  SQL Server 7.0 SP2 Beta
7.00.842  SQL Server 7.0 SP2

7.0.1073  SQL 7 Olap "gold" release
7.0.1245  SQL 7 Olap SP1
7.0.1325  SQL 7 Olap SP2 Beta

6.50.201  SQL Server 6.5 "gold" release.
6.50.213  SQL Server 6.5 with Service Pack 1
6.50.240  SQL Server 6.5 with Service Pack 2
6.50.252  SQL Server 6.5 with "bad" Service Pack 3 - SP3 was pulled and
re-issued.  Do not use this version.
6.50.258  SQL Server 6.5 with Service Pack 3
6.50.259  SQL Server 6.5 on SBS only
6.50.281  SQL Server 6.5 with Service Pack 4
6.50.297  SQL Server 6.5 included in Site Server 3
6.50.339  SQL Server 6.5 "Y2K" Hot-fix
6.50.415  SQL Server 6.5 with Service Pack 5 - SP5 was re-issued as SP5a.  Do
not use this version.
6.50.416  SQL Server 6.5 with Service Pack 5a

6.00.121  SQL Server 6.0 "gold" release.
6.00.124  SQL Server 6.0 with Service Pack 1
6.00.139  SQL Server 6.0 with Service Pack 2
6.00.151  SQL Server 6.0 with Service Pack 3

Here's an SP you can run (amended from an original by Jerry Spivey) to show the
version

drop PROC VERSION_INFO
go
CREATE PROC VERSION_INFO
AS
SET NOCOUNT ON




  WHEN '121' THEN 'NO SP'
  WHEN '124' THEN 'SP1'
  WHEN '139' THEN 'SP2'
  WHEN '151' THEN 'SP3'
  WHEN '201' THEN 'NO SP'
  WHEN '213' THEN 'SP1'
  WHEN '240' THEN 'SP2'
  WHEN '252' THEN 'SP3 ** BAD **'
  WHEN '258' THEN 'SP3'
  WHEN '259' THEN 'SP3 + SBS'
  WHEN '281' THEN 'SP4'
  WHEN '297' THEN 'SP4 + SBS'
  WHEN '339' THEN 'SP4 + Y2K'
  WHEN '415' THEN 'SP5 ** BAD **'
  WHEN '416' THEN 'SP5a'
  WHEN '517' THEN 'Beta 3'
  WHEN '583' THEN 'RC1'
  WHEN '623' THEN 'NO SP'
  WHEN '677' THEN 'MSDE (Office 2000)'
  WHEN '689' THEN 'SP1 Beta'
  WHEN '699' THEN 'SP1'
  WHEN '835' THEN 'SP2 Beta'
  WHEN '842' THEN 'SP2'
  WHEN '198' THEN 'Beta 1'
  WHEN '047' THEN 'EAP4'
  WHEN '078' THEN 'EAP5'
  WHEN '100' THEN 'Beta 2'
 ELSE 'Unknown - Must be a Hot-Fix version'
 END AS 'SERVICE PACK'
go
EXEC VERSION_INFO

===

v1.19 2000.04.28
Applies to SQL Server versions  : All
FAQ Categories                  : Installation and Upgrades
Related FAQ articles            : n/a
Related Microsoft Kb articles   : n/a
Other related information       : n/a
Authors                         : Neil Pike

 Neil Pike MVP/MCSE.  Protech Computing Ltd
 (Please reply only to newsgroups)
 SQL FAQ (428 entries) see
 forumsb.compuserve.com/vlforums/UK/default.asp?SRV=MSDevApps (sqlfaq.zip - L7
- SQL Public)
 or www.ntfaq.com/sql.html
 or www.sql-server.co.uk
 or www.mssqlserver.com/faq

 
 
 

How do I determine what SP our SQL 6.5 and 7.0 has?

Post by Bo Edstro » Tue, 02 May 2000 04:00:00


On Mon, 01 May 2000 18:16:01 +0100, Neil Pike

Thanks,
Bo

>Bo,

>> We have some SQL 6.5 and 7.0 servers and some we are not sure what
>> service pack is installed.

>Q.     What SQL Server servicepack am I running?  How can I get new ones?


>table.  Or look at the top of the latest SQL errorlog file.  Or do a file
>properties on the sqlservr.exe file.  All should return the same value.

...
Quote:> Neil Pike MVP/MCSE.  Protech Computing Ltd