Heim  >  Artikel  >  Datenbank  >  SQLCLR Tips: 配置数据库使其支持SQLCLR

SQLCLR Tips: 配置数据库使其支持SQLCLR

WBOY
WBOYOriginal
2016-06-07 15:41:501201Durchsuche

从SQL Server 2005开始,可以用.Net来编写存储过程了。不仅仅存储过程可以用.Net来开发,用户自定义函数、用户自定义类型、触发器等也可以用.Net来编写。这个特性就是SQLCLR。但SQLCLR这个特性默认是不开启的。 开启SQLCLR 如果需要开启,需要执行下面两条SQ

从SQL Server 2005开始,可以用.Net来编写存储过程了。不仅仅存储过程可以用.Net来开发,用户自定义函数、用户自定义类型、触发器等也可以用.Net来编写。这个特性就是SQLCLR。但SQLCLR这个特性默认是不开启的。


开启SQLCLR


如果需要开启,需要执行下面两条SQL语句:

sp_configure 'clr enabled', 1;
RECONFIGURE --WITH OVERRIDE;

执行完以后数据库就支持SQLCLR了。


关闭SQLCLR


如果想要关闭这个特性,可以执行:

sp_configure 'clr enabled', 0;
RECONFIGURE --WITH OVERRIDE;


查询SQLCLR状态


如果不清楚数据库是否支持SQLCLR,同样可以通过 sp_config 这个系统存储过程来查询:

sp_configure 'clr enabled';

如果SQLCLR是关闭的,则执行结果为:

SQLCLR Tips: 配置数据库使其支持SQLCLR

如果SQLCLR是开启的,则执行结果为:

SQLCLR Tips: 配置数据库使其支持SQLCLR


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:8.1 数据库Nächster Artikel:VC操作数据库技术