Share via

Attunity drivers are failing after OS upgrade to 2022

vamsi krishna 0 Reputation points
2026-01-06T16:10:32.53+00:00

we have ssis packages where target is sql server 2016 and os 2016. recently we upgraded server os to 2022 but the sql server is still 2016. after upgrade the packages which are using attunity drivers to connect to oracle are failing when we give password in the same connection string environment variable. but when we give password in the seperate password field the packages are running fine.

SQL Server Integration Services
0 comments No comments
{count} votes

Answer recommended by moderator
  1. Q&A Assist
    2026-01-06T16:11:45.05+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    It seems that after upgrading your server OS to 2022, the SSIS packages using Attunity drivers to connect to Oracle are experiencing issues when the password is provided in the connection string environment variable. This could be related to changes in how the operating system handles security and encryption, particularly with sensitive information like passwords.

    In SSIS, the default setting for the ProtectionLevel property is EncryptSensitiveWithUserKey, which means sensitive data is encrypted with the user key. If the environment has changed (like an OS upgrade), it may affect how these sensitive properties are decrypted, leading to failures when trying to use them in the connection string directly.

    Using a separate password field may bypass this issue, as it allows the package to handle the password in a way that is compatible with the new environment. To resolve this, consider reviewing the ProtectionLevel settings of your SSIS packages and possibly adjusting them to ensure compatibility with the new OS environment.

    Additionally, ensure that you have the latest versions of the Attunity connectors installed that are compatible with your SQL Server version and the new OS to avoid any compatibility issues.


    References:


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.