How to see if SQL2000 has been patched

the first method:

In fact, you only need to query the version number to know, enter in the query analyzer: SELECT    @@version

If you have installed the patch for SP4 . Should be the following information:

Microsoft SQL Server 2000 - 8.00.2039

Other version information is as follows:

6.50.201 SQL Server 6.5 RTM
6.50.213 SQL Server 6.5 with Service Pack 1
6.50.240 SQL Server 6.5 with Service Pack 2
6.50.258 SQL Server 6.5 with Service Pack 3
6.50.281 SQL Server 6.5 with Service Pack 4
6.50.415 SQL Server 6.5 with Service Pack 5
6.50.416 SQL Server 6.5 with Service Pack 5a
7.00.623 SQL Server 7.0 / MSDE 1.0 RTM
7.00.699 SQL Server 7.0 SP1 July 1999
7.00.842 SQL Server 7.0 SP2 March 20th, 2000
7.00.961 SQL Server 7.0 SP3 December 15th, 2000
7.00.1063 SQL Server 7.0 SP4
8.00.194 SQL Server 2000 RTM
8.00.384 SQL Server 2000 SP1
8.00.534 SQL Server 2000 SP2 November 30th, 2001
8.00.760 SQL Server 2000 SP3
8.00.2039 SQL Server 2000 SP4

The second method:

Enter in the query analyzer: select serverproperty('productlevel')

If you have not played SP, it will be RTM, otherwise it will display the SP version.

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326800735&siteId=291194637