Heim > Datenbank > MySQL-Tutorial > Hauptteil

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

WBOY
Freigeben: 2016-06-07 15:41:50
Original
1203 Leute haben es durchsucht

从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;
Nach dem Login kopieren

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


关闭SQLCLR


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

sp_configure 'clr enabled', 0;
RECONFIGURE --WITH OVERRIDE;
Nach dem Login kopieren


查询SQLCLR状态


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

sp_configure 'clr enabled';
Nach dem Login kopieren

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

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

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

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


Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
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
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage