简体   繁体   English

是否可以更改 Azure 弹性池服务器版本

[英]Is it possible to change Azure Elastic Pool server version

I created a new instance of SQL elastic pool server, the displayed version of sql server is 12.0.2000.8.我新建了一个SQL弹性池服务器实例,sql服务器显示的版本是12.0.2000.8。 Is it possible to upgrade it to 13.x?可以升级到 13.x 吗?

Azure SQL Databases always run on latest stable version of the SQL Server database engine.(Refer to link for more details). Azure SQL 数据库始终在 SQL 服务器数据库引擎的最新稳定版本上运行。(有关详细信息,请参阅链接)。

You can run below queries to check the same after creating the database:您可以在创建数据库后运行以下查询以检查相同内容:

select @@version as version; select @@version 作为版本; select serverproperty('ProductVersion') as [version],serverproperty('Edition') as [edition]; select serverproperty('ProductVersion') as [version],serverproperty('Edition') as [edition]; SELECT name, compatibility_level FROM sys.databases; SELECT 名称,compatibility_level FROM sys.databases;

You can find the version using the SQL query but that will always show you v12.xxx您可以使用 SQL 查询找到版本,但它始终会显示 v12.xxx

Hope this will help.希望这会有所帮助。

Thanks谢谢

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM