SSIS :Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for use in specified state.". You may not be authorized to access this information. This error occurs when there is a cryptographic error. Verify that the correct key is available.
when i am trying to open the SSIS package in BIDS iam getting this error and closing the BIDS
Package Loading error ,Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for use in specified state.". You may not be authorized to access this information. This error occurs when there is a cryptographic error. Verify that the correct key is available.
Actual Issue : the value of the package property "ProtectionLevel" is some sensitive setting instead of DontSaveSensitive then you will face this issue .
How to solve this issue : check the package's protectionLevel property ... unless you're using passwords and security with your packages and their deployment, it's probably best/easier to set your package ProtectionLevel to DontSaveSensitve, which removes passwords from the packages, which should probably solve your problem
Package Loading error ,Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for use in specified state.". You may not be authorized to access this information. This error occurs when there is a cryptographic error. Verify that the correct key is available.
Actual Issue : the value of the package property "ProtectionLevel" is some sensitive setting instead of DontSaveSensitive then you will face this issue .
How to solve this issue : check the package's protectionLevel property ... unless you're using passwords and security with your packages and their deployment, it's probably best/easier to set your package ProtectionLevel to DontSaveSensitve, which removes passwords from the packages, which should probably solve your problem
Comments
Post a Comment