Hi
I have been trying to resolve a connection string issue all day, and havent figured out whats the problem. I keep getting the Acquire Connection error everytime I run my package. Can you someone review the format of my connection string, and confirm that it is indeed the correct format:
I have two conn strings specified in my config file, one is to connect to a remote database and one is for local. I have validated the connectivity from my server to these databases via Management Studio, and it seems to connect fine. But when I run my package it keeps failing.
SQL Server Authentication(Remote Database Server):
Data Source=server_name;Username=useraccount;Password=xxxxx;Initial Catalog=dbname;Provider=SQLNCLI.1;
Windows Authentication(Local Database on the server):
Data Source=xxxxxx;Initial Catalog=xxxxx;Provider=SQLNCLI.1;Integrated Security=SSPI;
I would really appreciate if someone can help me with this, I have been trying to troubleshoot this all day today, and still havent had any luck. Thanks.