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;
直接运行以下script:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;