I have created a dts package and deployed to SSIS Dev server, with project deployment model. The package executes a stored procedure in a database named TCUCDB, which resides in another server tcsqldev01.
I have the connectionmanager created with Integrated Security=True, and tested connection is ok. I have environment set for QA, and when I try executing the package, selecting the Environment "QA", and I can see the connection string in "Connection
Managers" tab as Integrated Security=True. But on execution from SSMS (Service catalog->package->right click -> Execute), packages fails to run with the error message below, on report
Failed to acquire connection "TCUCDB". Connection may not be configured correctly or you may not have the right permissions on this connection.
I checked with DBA, and they confirmed error logged on access to tcsqldev01 is as below
"Login failed for user 'NT AUTHORITY\ANONUMOUS LOGON'. Reason: Could not fin a login matching the name provided"
Why the login using this user account, instead my windows account, even after setting Integrated Security=True?
How can I resolve this issue, and make sure package is executed on my windows account?
The dts package execution report also confirm the caller is my windows account 'DOMAINNAME\sbalakrishnan'
↧
Login failed for user 'NT AUTHORITY\ANONUMOUS LOGON'. Reason: Could not fin a login matching the name provided
↧