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.
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.
Copyright © 2021 Jogjafile Inc.
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.