How do I enable Microsoft .NET on SQL Server?
You use the standard sp_configure stored procedure, as the following T-SQL code shows:
sp_configure 'CLR Enabled', 1 GO RECONFIGURE EXEC sp_configure
End of Article
You must log on before posting a comment. If you don't have a username & password, please register now.