Trying to get a general understandin of what integrated security does and does not mean. Have an SSIS package that perform some operations against DB1. Ran a custom utility to deploy the package. Ran the customer utility once with Integrated Security checked, and another time with Integrated Security Not checked. Realize it is a custom utilty and it manipulates the connection manager strings, but trying to understand the basics.
Created with customer utility where Integrated Security was checked. So for this one there is no userid information. Under what credentials is the package executed?
<DTS:ConnectionManager><DTS:Property DTS:Name="Retain">0</DTS:Property><DTS:Password DTS:Name="Password" Sensitive="1"></DTS:Password><DTS:Property DTS:Name="ConnectionString">Data Source=fidevh360bi\fidevh360bi;Provider=SQLNCLI10.1;Initial Catalog=Bank03;Integrated Security=SSPI;Auto Translate=False;</DTS:Property></DTS:ConnectionManager>
Created with same custom utility where Integrated Security was NOT checked and a userid and password was entered.
<DTS:ConnectionManager><DTS:Property DTS:Name="Retain">0</DTS:Property>PASSWORDHERE<DTS:Password DTS:Name="Password" Sensitive="1"></DTS:Password><DTS:Property DTS:Name="ConnectionString">Data Source=fidevh360bi\fidevh360bi;Provider=SQLNCLI10.1;Initial Catalog=Bank03;User ID=FNR2S\e123456789;</DTS:Property></DTS:ConnectionManager>