Setting the value of the CLR Enabled server configuration option to 0

You can use the CLR Enabled option to specify if the user assemblies can be run by SQL Server.

To set the value of the CLR Enabled option to 0, run this T-SQL command on the IRC and the CM database:

EXECUTE sp_configure 'clr enabled', 0;
RECONFIGURE;