Hi @Jacob Walker ,
The designed behavior in SSIS is to prevent storing passwords in a package for safety.
If you couldn't use Windows authentication, the workaround is like you said thatuse a configuration file with the connection string of the connection manager embedded. The password can be stored in the dtsConfig file.
<Configuration ConfiguredType="Property" Path="\Package.Connections[DBConnection].Properties[ConnectionString]" ValueType="String">
<ConfiguredValue>Data Source=192.168.45.21;User ID=sqlServerUser; password=myPassword; Initial Catalog=MyDB;Provider=SQLNCLI11.1;Persist Security Info=True;Auto Translate=False;</ConfiguredValue>
</Configuration>
More details you may refer:
https://stackoverflow.com/questions/1274080/ssis-connection-manager-not-storing-sql-password
Regards,
Zoe
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Hot issues October