Enable "clr enabled" configuration
-- check if CLR is enabled
SELECT * FROM sys.configurations
WHERE name = 'clr enabled'
-- Value field i.e 0 - disable, 1-
enable
-- For enable clr
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;
GO
Really good information to show through this blog. I really appreciate you for all the valuable information that you are providing us through your blog.
ReplyDeleteThe information you shared was useful. Thank you for taking the time to organize it.
ReplyDeleteThank you for your valuable feedback
DeleteThanks for your feedback
ReplyDelete