How to determine which version of SQL Server 2000 is running

http://support.microsoft.com/default.aspx?scid=kb;en-us;321185

 

How to determine which version of SQL Server 2000 is running

To determine which version of SQL Server 2000 is running, connect to SQL Server 2000 by using Query Analyzer, and then run the following code:

SELECT  SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')

The results are:

The product version (for example, 8.00.534).
The product level (for example, "RTM" or "SP2").
The edition (for example, "Standard Edition"). For example, the result looks similar to:

8.00.534 RTM Standard Edition

The following table lists the Sqlservr.exe version number:
Release Sqlservr.exe
RTM 2000.80.194.0
SQL Server 2000 SP1 2000.80.384.0
SQL Server 2000 SP2 2000.80.534.0
SQL Server 2000 SP3 2000.80.760.0
SQL Server 2000 SP3a 2000.80.760.0
SQL Server 2000 SP4 2000.8.00.2039

相关文章:

  • 2021-04-21
  • 2021-11-28
  • 2021-05-27
  • 2021-08-23
  • 2022-12-23
  • 2022-03-05
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-11
  • 2021-12-12
  • 2022-12-23
  • 2021-12-28
  • 2021-12-02
  • 2021-06-18
相关资源
相似解决方案