当前位置: 代码迷 >> .NET相关 >> .net调用存储过程碰到的一个有关问题
  详细解决方案

.net调用存储过程碰到的一个有关问题

热度:92   发布时间:2016-04-24 02:44:26.0
.net调用存储过程碰到的一个问题

问题描述

报错信息如下:

Execution of user code in the .NET Framework is disabled. Enable "clr enabled" configuration option.

解决办法

use dasolPSDev;EXEC sp_configure 'clr enabled', 1 go RECONFIGURE goEXEC sp_configure 'clr enabled' go
  相关解决方案