Hello all,I am going to try and explain what I am looking to do here, so please bear with me :-).I have several SSIS packages that run off of config files. Each package, as of now, has a dedicated config file which makes deployment prone to human error. What I would like to do is have one dedicated config file for all packages and pass variables into the config file. I have researched environment variables, but I am concerned about security issues and creating extra steps. I am looking to do something like this...<ConfiguredValue>Data Source=[b][User::DataSource][/b];Initial Catalog=[b][User::InitialCatalog][/b];Provider=[b][User::Provider][/b];Integrated Security=[b][User::IntegratedSecurity][/b];Auto Translate=False;So, I am guessing that I can pass these parameters FROM a SQL Agent job into the SSIS package and into the config file. Is this possible?Thank you all in advance for your time.
↧