Hello,
I have come back to SSIS (2014) after a while to make our existing Data Warehouse start extracting data from a new Oracle database. To do this, we are using the Oracle Provider for OLE DB which is a first for me.
Unlike our packages that rely on integrated security, with the Oracle connection we need to provide a user name and password. We are also having to change the package ProtectionLevel as well (to EncryptSensitiveWithUserKey) because the default DontSaveSensitive means the password is not stored.
For our SQL Server connection, we get everything from a database parameter table the is environment so the same package can be run in DEV, PRE and PRO. I tried to do the same for the Oracle connection and as soon as I parameterise the ConnectionString, Password and UserName the Oracle connection manager changes to SQL Server!
How can I parameterise the key Oracle Provider stuff for Oracle so I can use the package on different environments using the configuration database table?
Thanks in advance!