Azure SQL 服务器 "clr strict security" 可以更改吗

Azure SQL Server "clr strict security" can this be changed

我正在尝试更改 Azure SQL 服务器中的 'clr strict security',但无法更改,这在 Azure 托管 SQL 服务器中不再可行吗?

我先创建了一个证书,然后我尝试为该证书创建一个登录名,但也失败了,这是否已更改,是否可以通过其他方式完成。

CREATE LOGIN MIRRepoCertLogin FROM CERTIFICATE MIRRepoCert; Keyword or statement option 'CERTIFICATE' is not supported in this version of SQL Server

也失败了

我的意图是 运行 Azure SQL 服务器中的以下命令。任何建议。

EXEC sp_configure 'show advanced options', 1; 
RECONFIGURE with override;
EXEC sp_configure 'clr strict security', 0; 
RECONFIGURE with override; 
EXEC sp_configure 'show advanced options', 0; 
RECONFIGURE with override;

重要
据我们所知,Azure SQL 服务器不支持 sp_configure 和 SQL 证书声明。

  1. 当我尝试执行 CREATE LOGIN xxx FROM CERTIFICATE xxx 命令时。它显示错误在 Azure 托管 SQL 服务器中不受支持。

  1. 当我尝试执行 EXEC sp_configure 命令时。它还显示不支持