We have recently started using SSIS 2014 and for our changing values we use [dbo].[SSIS Configurations] (SQL Server table). We are connecting to a DB that requires a UN/PW combo to connect. I was pleased to see the password was encrypted in the table.
In the past, we always scripted out the insert/update for the next environment as we don't have permissions on production so the dba just needs to execute the script and viola, the production values are in the config table.
How does one do that if the password field is encrypted and we don't want to insert plain text... We tried updating the value via the package properties on the server, but that doesn't change the configuration values.
The username/password changes for each environment, how do we migrate this?
Thanks