Skip navigation

Enabling .NET on SQL Server

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 
TAGS: SQL
Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish