无法在集成服务目录SQL Server 2012中创建文件夹

时间:2014-11-04 19:34:17

标签: ssis sql-server-2012 ssms-2012

无法在集成服务目录SSIS 2012中创建文件夹

错误:

Error Message

2 个答案:

答案 0 :(得分:3)

是的,恢复是个问题。

创建SSISDB时,指定用于创建数据库主密钥的密码。您已将数据库还原到其他服务器,并且需要在已还原的计算机上对齐密钥

BOL详细介绍了这一点:Backup, Restore, and Move the SSIS Catalog

   -- If you know what the password that was used when the catalog was created
   open master key 
   decryption by password = 'LS1Setup!' --'Password used when creating SSISDB'
   Alter Master Key 
   Add encryption by Service Master Key

否则,您将需要使用锤子。

   Restore master key from file = 'c:\temp\RCTestInstKey'
   Decryption by password = 'LS2Setup!' -- 'Password used to encrypt the master key during SSISDB backup'
   Encryption by password = 'LS3Setup!' -- 'New Password'
   Force

答案 1 :(得分:0)

现在我可以在目录中创建文件夹

消退:

检查登录:## MS_SSISServerCleanupJobLogin ##

enter image description here

需要启用Database RoleMembership for:SSISDB as public

enter image description here