摘要:
本文是学习Sqlserver CLR 整合过程中的笔记,会持续更新。欢迎批评指正!1. 启用CLR整合1 sp_configure 'show advanced options', 1;2 GO3 RECONFIGURE;4 GO5 sp_configure 'clr enabled', 1;6 GO7 RECONFIGURE;8 GOView Code 2. 查询数据库支持的CLR版本:1 select * from sys.dm_clr_properties2 select * from sys.dm_clr_appdomains3 select * fro 阅读全文