Can't save the password in connection manager in SSIS package, it's replaced with *** (stars) after publishing

161 Views Asked by At

I have a SSIS package shifted to ADF, it's connected to Azure SQL Server, but every time I publish, the password in connection manager is being replaced with ********** star symbols. password replaced - obviously its impossible to connect to DB after that and I have to replace password with actual one again to run the pipeline. Have 'Protection Level: EncryptSensitiveWithUserKey' in the SSIS project.

1

There are 1 best solutions below

0
Pratik Lad On

I have to replace password with actual one again to run the pipeline.

To resolve this issue you can use dynamic content for pipeline.

  • In pipeline we can create string variable or a pipeline parameter and then use that variable or parameter in pipeline while runtime. enter image description here

  • Using dynamic expression, you can fetch it like below: enter image description here

  • It will take its default value automatically in runtime.so you don't need to put it in for every run.