How to remove the password for SSIS package

D Venkatesh 0 Reputation points
2023-01-23T14:43:15.1933333+00:00

I want to delete the password for existing ssis packages.

SQL Server Integration Services
SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,702 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Muhammad Ahsan Khan 250 Reputation points
    2023-03-27T10:48:04.33+00:00

    To remove the password for an existing SSIS package, you can follow these steps:

    1. Open SQL Server Data Tools (SSDT) or SQL Server Management Studio (SSMS) and connect to the SQL Server instance where the SSIS package is located.
    2. Locate the SSIS package in the Solution Explorer or Object Explorer, right-click it, and select "Properties" from the context menu.
    3. In the Properties window, select the "ProtectionLevel" property and set it to "DontSaveSensitive". This will remove the password protection from the SSIS package.
    4. Save and deploy the updated SSIS package.

    Note that removing the password protection may expose sensitive information in the SSIS package. If you need to protect the sensitive information, you can use other protection options such as Windows Authentication or EncryptSensitiveWithUserKey protection level.

    0 comments No comments

Your answer

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