Enabling CLR Integration
The common language runtime (CLR) integration feature is off by default, and must be enabled in order to use objects that are implemented using CLR integration. To enable CLR integration, use the clr enabled option of the sp_configure stored procedure:
1
p_configure 'show advanced options', 1;
2
GO
3
RECONFIGURE;
4
GO
5
sp_configure 'clr enabled', 1;
6
GO
7
RECONFIGURE;
8
GO
p_configure 'show advanced options', 1;2
GO3
RECONFIGURE;4
GO5
sp_configure 'clr enabled', 1;6
GO7
RECONFIGURE;8
GO
浙公网安备 33010602011771号