Reputation: 672
I am extremely new to SSIS and may need allot of things explained.
What I am trying or attempting to accomplish is this:
I am getting the following execute errors in SSIS:
I do not even know what information to add to be helpful. I have a data flow which consists of a XML web source and a destination that points to a SQL table on the system.
My Questions are:
Upvotes: 1
Views: 33271
Reputation: 772
You will need to set your connection string as an expression and either hard code or parametrize your user and password.
The password is encrypted based on information from the machine that it is encrypted on. Once you move that encrypted property to the server it will not know how to decrypt it and therefore does not have a valid password.
I had to do this with a project I was working on with AZURE. I believe there is a setting to remove the encryption from the password but that is no different then hard coding the user and pass in the connection string expression.
Upvotes: 2