I am building a SSIS package using BIDS 2008. I have configured the package read the configuration settings in the database.
For e.g I have the following connectionstring in my package
<DTS:Property DTS:Name="ConnectionString">Data Source=xxxxx\SQL2008R2;User ID=;Initial Catalog=xxxxx;Provider=SQLNCLI10.1;Integrated Security=SSPI;Application Name=xxxxxL-{452DA0BD-2ACF-4780-9DB0-5A64ABB406A1}xxxxxx.xxxxxx;Auto Translate=False;</DTS:Property>
The configuration setting in the database is as follows
I need to be able to deploy the packages in all environments without changing the connectionstring in the package itself. I tried to modify the connectionstring in the package thinking that it will read the connectionstring from the configuration settings in the database.It unfortunately didn't work. So what is the use of the configuration settings if I have to modify the package file for every environment.
Currently it only works if the connection string in right in the package as well the database