日期:2014-05-18 浏览次数:20469 次
exec sp_configure 'show advanced options', '1'; go reconfigure; go exec sp_configure 'clr enabled', '1' go reconfigure; exec sp_configure 'show advanced options', '1'; go
------解决方案--------------------
exec sp_configure 'clr enabled ', '1 '
后面多了个空格
------解决方案--------------------
提示比较明显了吧
默认情况下 ‘clr enabled’配置选项是关闭的
用上面的代码就打开了。
------解决方案--------------------
exec sp_configure 'show advanced options ', '1 '; reconfigure; go exec sp_configure 'clr enabled ', '1 ' reconfigure; go exec sp_configure 'show advanced options ', '1 '; reconfigure; go
------解决方案--------------------
exec sp_configure 'show advanced options', '1 '; go reconfigure; go exec sp_configure 'clr enabled', '1 ' go reconfigure; go exec sp_configure 'show advanced options', '1 '; go /*配置选项 'show advanced options' 已从 0 更改为 1。请运行 RECONFIGURE 语句进行安装。 配置选项 'clr enabled' 已从 1 更改为 1。请运行 RECONFIGURE 语句进行安装。 配置选项 'show advanced options' 已从 1 更改为 1。请运行 RECONFIGURE 语句进行安装。*/
------解决方案--------------------
exec sp_configure 'show advanced options', '1' exec sp_configure 'clr enabled', '1' reconfigure with OVERRIDE
------解决方案--------------------
exec sp_configure 'show advanced options', '1 '; go reconfigure; go exec sp_configure 'clr enabled', '1 ' go reconfigure; go exec sp_configure 'show advanced options', '1 '; go
------解决方案--------------------
exec sp_configure 'show advanced options', '1'; reconfigure; go exec sp_configure 'clr enabled', '1'; reconfigure; go exec sp_configure 'show advanced options', '1'; reconfigure; go
------解决方案--------------------
结贴。