2016-04-20 12 views
0

最新のSQL Server2016リリースの新しいAZUREマシンがインストールされました。 ssis packages(パッケージをデシリアライズしない例外が発生した後)ssisサービスカタログを作成することもできません。私はエラーを取得しています:SSISサービスカタログの作成中にエラーが発生しました。

Method not found: 'Void.Microsoft.SqlServer.Management.IntegrationServices.EnableSSISSupportAlwaysOnSqmHelper.Initialise()'

Error creating SSIS Service Catalog Screenshot

答えて

0

まず次のSQLスクリプト使用してCLRを有効にする:

ます。sp_configure '高度な表示オプション'、1; GO RECONFIGURE; GO sp_configure 'clr enabled'、1; GO RECONFIGURE; GO

そして、このPowerShellスクリプトを使用して、カタログを作成します。

ストア

$ ISNamespace =「Microsoft.SqlServer.Managementそれを毎回入力しないようにするIntegrationServicesアセンブリの名前空間IntegrationServicesアセンブリに

をロードします.IntegrationServices "

Write-Host"サーバーに接続中... "

サーバーへの接続を作成します。

$ sqlConnectionString = "データソース= localhost;初期カタログ= master;統合セキュリティ= SSPI; $ SqlConnectionオブジェクト=新オブジェクトSystem.Data.SqlClient.SqlConnection $ sqlConnectionString

書き込みホスト "接続..."

Integration Servicesのオブジェクトを作成します

$ integrationServices =新オブジェクト$ ISNamespace ".IntegrationServices" $ SqlConnectionの

書き込みホスト "SSIS OBJ作成..."

入額新しいSSISカタログ

$ catalog = New-Object $ ISNamespace "カタログ"($ integrationServices、 "SSISDB"、 "P @ assword1") $ catalog.Create()

関連する問題