在SQL Server 2005及以后的版本支持SQLClR。SQLClR主要是为了减少大的SQL语句在网络中花费的时间。

 

在SQL Server中,SQL CLR默认是禁用的。启用方法如下(1为开启,0为禁用。):
exec sp_configure 'clr enabled',1
reconfigure with override
go

 

获取SQLCLR的状态

exec sp_configure 'clr enabled'

 

获取SQLCLR的属性
select * from sys.dm_clr_properties

 

 

-----------------------------------------------------------------------

系列文章目录

 

 

相关文章:

  • 2021-12-13
  • 2021-09-01
  • 2021-12-12
  • 2021-06-12
  • 2022-12-23
  • 2021-07-27
猜你喜欢
  • 2021-11-10
  • 2021-08-17
  • 2022-12-23
  • 2021-10-05
  • 2022-01-28
相关资源
相似解决方案