Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to identify the version numbers of each version of My SQL

2025-01-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces "how to identify the version number of each version of My SQL". In the daily operation, I believe that many people have doubts about how to identify the version number of each version of My SQL. The editor consulted all kinds of materials and sorted out a simple and easy-to-use method of operation. I hope it will be helpful to answer the doubt of "how to identify the version number of each version of My SQL". Next, please follow the editor to study!

Summary this article describes how to identify the current SQL Server version number and the corresponding product level or service pack (SP) level. It also describes how to identify the specific version of SQL Server 2000 or SQL Server 7.0 that you are using.

How to determine the version of SQL Server 2005 that you are running

To determine the version of SQL Server 2005 you are running, connect to SQL Server 2005 using SQL Server Management Studio, and then run the following Transact-SQL statement:

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

The result is as follows: product version (for example, "9.00.1399.06").

Product level (for example, "RTM").

Version (for example, "Enterprise Edition")

For example, the run result might look like this: 9.00.1399.06 RTM Enterprise Edition

The following table lists the version number of Sqlservr.exe: release Sqlservr.exe

RTM 2005.90.1399

SQL Server 2005 Service Pack 1 2005.90.2047

How to determine the version of SQL Server 2000 that you are running

To determine the version of SQL Server 2000 you are running, connect to SQL Server 2000 using query Analyzer, and then run the following code:

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

The running result is as follows: product version (for example, 8.00.534).

Product level (for example, "RTM" or "SP2")

Version (for example, "Standard Edition") For example, the run result might be similar to the following:

8.00.534 RTM Standard Edition

The following table lists the version number of Sqlservr.exe: 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

How to determine the version of SQL Server 7.0 that you are running

To determine which version of SQL Server you are running, use query Analyzer to connect to SQL Server 7.0, and then run the following code:

SELECT @ @ VERSION

The running result is similar to the following:

Microsoft SQL Server 7.00-7.00.623 (Intel X86) Nov 27 1998 22:20:07Copyright (c) 1988-1998 Microsoft CorporationDesktop Edition on Windows NT 5.1 (Build 2600:)

Note: in this example, the version number is 7.00.623.

Use the version number in the following table to identify the product level or Service Pack level: version number Service Pack

7.00.1063 SQL Server 7.0 Service Pack 4 (SP4)

7.00.961 SQL Server 7.0 Service Pack 3 (SP3)

7.00.842 SQL Server 7.0 Service Pack 2 (SP2)

7.00.699 SQL Server 7.0 Service Pack 1 (SP1)

7.00.623 SQL Server 7.0 RTM (Release To Manufacturing)

If the version number of the @ @ VERSION report is not listed in this table, the SQL Server you are running has a patch or security update build installed. For example, if @ @ VERSION reports version number 7.00.859, you are running SQL Server 7.0 SP2 with patches installed. The version number of each new version of the Sqlservr.exe executable is increased. For more information, see the Readme.txt file for patches or security updates.

How to determine the version of SQL Server 6.5 that you are running

To determine which version of SQL Server 6.5 you are running, connect to SQL Server 6.5 using Isql_w, and then run the following code:

SELECT @ @ VERSION

Use the version number in the following table to identify the product level or Service Pack level: version number Service Pack

6.50.479 SQL Server 6.5 Service Pack 5a (SP5a) Update

6.50.416 SQL Server 6.5 Service Pack 5a (SP5a)

6.50.415 SQL Server 6.5 Service Pack 5 (SP5)

6.50.281 SQL Server 6.5 Service Pack 4 (SP4)

6.50.258 SQL Server 6.5 Service Pack 3 (SP3)

6.50.240 SQL Server 6.5 Service Pack 2 (SP2)

6.50.213 SQL Server 6.5 Service Pack 1 (SP1)

6.50.201 SQL Server 6.5 RTM

If the version number of the @ @ VERSION report is not listed in this table, the SQL Server you are running has a patch or security update build installed. The version number of each new version of the Sqlservr.exe executable is increased. For more information, see the Readme.txt file for patches or security updates.

How to determine the version of SQL Server you are running

If you are not sure which version of SQL Server you are running, the last line in the output returned by @ @ VERSION reports the version you are connected to. The example used in this article is SQL Server 2000 Standard Edition installed on Windows NT 5.0 (build 2195:Service Pack 2). Service Pack 2)

Note: the build and Service Pack information provided earlier is applicable to the operating system, not to SQL Server.

Standard Edition on Windows NT 5.0 (Build 2195:Service Pack 2)

At this point, the study on "how to identify the version numbers of each version of My SQL" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report