SQL Server Jobs with SSIS packages - Failed to decrypt protected XML node “DTS:Password” with error 0x8009000B

前端 未结 6 1057
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-05 02:54

i have a SQL server job that runs a SSIS package. This job has 9 steps and in each step it extracts data from a different database. the connections strings are defined as param

6条回答
  •  情深已故
    2021-02-05 03:13

    In addition to what Kiran's answer suggests, make sure this is set correctly:

    There is an option to in SSIS to save passwords(to access DB or anyother stuff), the default setting is "EncryptSensitiveWithUserKey"... You need to change this.

    Package Proprties Window > ProtectionLevel -- Change that to EncryptSensitiveWithPassword PackagePassword -- enter password-> somepassword

提交回复
热议问题