I am trying to deploy a CLR function (which computes a hash of a text or a file, not available from SQL Server) for the first time on a production server.
I was able to test the function on a development machine but I am still wondering,
Are there any list of gotchas to consider before turning on the CLR option?
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;
GO