exec sp_configure 'clr enabled' not working on Azure SQL DB

416 Views Asked by At

How can I disable clr and remote access on Azure Paas DB that was migrated from Azure SQL on IaaS?

exec sp_configure 'clr enables' not working on SQL PaaS DB and I need to disabled clr and remote access.

1

There are 1 best solutions below

0
Alberto Morillo On

CLR is not supported on Azure SQL Database as explained here, so you don't need to disable CLR on Azure SQL. In PaaS, only Azure Managed Instance supports CLR.

About configuring "Remote Access", that is a deprecated feature on SQL Server and is not available on Azure SQL PaaS as explained here.