Solution : SQL SERVER error: Execution of user code in the .NET Framework is disabled. Enable clr enabled configuration option

直接运行以下script:

sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;

原文地址:https://www.cnblogs.com/terryxym/p/2822993.html