Now we are going to configure the CLR, by enabling it.
Enable Set 1
Disable Set 0
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;
GO
Disabling
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 0;
GO
RECONFIGURE;
GO
Check whether the CLR is enabled or not using the below query:
SELECT * FROM sys.configurations WHERE name = 'clr enabled'
Thanks for reading:)

Join the conversation! Your thoughts help the community grow.