I have a Postgres source on one network, a SQL Server target on another, and I'm developing a data-flow task on my desktop that I want to deploy to the SQL Server SSIS Catalog.
I've managed to use the .NET Framework ODBC connection by building a new DSN using a connection string, saving it locally as a DSN file, providing a username / password and using that object as the source connection manager. That works fine.
Now I'm trying to deploy the project / package to the SSIS Catalog on my Production server, and I'm not sure what exactly I need to do to establish the same source DSN.
Do I parameterise the connection string and pass a hard-coded user/pass? Do I re-build a matching DSN on the server with the same name / path? Do I create a system DSN?
Can anyone give a step by step on best practice for managing connections / drivers / passwords in the SSIS Deployment Model?
Thank you.