Next Topic

Previous Topic

Book Contents

SQL:CLR

Kaseya Serverを使用するには、SQL ServerでCLRを有効にする必要があります。

まだ有効になっていない場合は、SQL Server Management Studio (SSMS)内の次のクエリを実行します。

EXEC sp_configure 'show advanced options' , '1';

go

reconfigure;

go

EXEC sp_configure 'clr enabled' , '1'

go

reconfigure;

-- Turn advanced options back off

EXEC sp_configure 'show advanced options' , '0';

go