Advertisement
Anaristos

Enabling clr in SQL Server

Apr 10th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
T-SQL 0.27 KB | None | 0 0
  1. ALTER DATABASE [Equipment] -- Put the name of your database here.
  2.  
  3. SET TRUSTWORTHY ON;
  4. GO
  5.  
  6. USE [Equipment] -- Put the name of your database here.
  7. GO
  8.  
  9. sp_configure 'show advanced options', 1;
  10. GO
  11. RECONFIGURE;
  12. GO
  13. sp_configure 'clr enabled', 1;
  14. GO
  15. RECONFIGURE;
  16. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement