unable to create forlder under SSISDB to deploy package

Heta Desai 357 Reputation points
2020-11-11T20:47:07.987+00:00

I have created VM on Azure where SQL server is configured to deploy the SSIS packages. I did create the Integration service catalog in SSMS. I need to deploy the packages in my local system to SQL Server(SSISDB) on azure VM. When I try to create folder under SSISDB it throws below error:

Operation 'Create' on object 'CatalogFolder[@DeezNutz ='test']' failed during execution. (Microsoft.SqlServer.Management.Sdk.Sfc)

For help, click: https://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=15.0.18206.0+((SSMS_Rel).191029-2112)&LinkId=20476


ADDITIONAL INFORMATION:

An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)


The operation cannot be started by an account that uses SQL Server Authentication. Start the operation with an account that uses Integrated Authentication.
The operation cannot be started by an account that uses SQL Server Authentication. Start the operation with an account that uses Integrated Authentication. (Microsoft SQL Server, Error: 27123)

For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&ProdVer=15.00.2000&EvtSrc=MSSQLServer&EvtID=27123&LinkId=20476


BUTTONS:

OK

I tried to deploy package from Visual studio and created folder from deployment wizard but same error occurs.

Please help me to solve the issue.

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

2 answers

Sort by: Most helpful
  1. Yitzhak Khabinsky 26,586 Reputation points
    2020-11-11T21:18:23.643+00:00

    The operation cannot be started by an account that uses SQL Server Authentication. Start the operation with an account that uses Integrated Authentication. (Microsoft SQL Server, Error: 27123)

    You need to login to MS SQL Server by using Windows Authentication.
    After that you will be able to create SSIS folders in SSIS Catalog.

    1 person found this answer helpful.

  2. Monalv-MSFT 5,926 Reputation points
    2020-11-12T03:23:17.723+00:00

    Hi @Heta Desai ,

    Please check if the user has correct permission to create folder in ssisdb catalog.

    Please set the user as ssis_admin database role.

    You access the SSISDB catalog in SQL Server Management Studio by connecting to the SQL Server Database Engine and then expanding the Integration Services Catalogs node in Object Explorer.

    To Set Folder Description and Permissions
    1.Right-click the folder and select Properties.
    2.On the General page, select Description under General and enter an optional description.
    3.On the Permissions page, click Browse..., select one or more database principals, and click OK.
    4.Select a name under Logins or roles and specify the appropriate permissions under Permissions.
    5.Click OK to accept the changes and close the Folders Properties dialog box.

    This view requires one of the following permissions:
    1.READ permission on the folder
    2.Membership to the ssis_admin database role
    3.Membership to the sysadmin server role

    The following links will be helpful:

    SSIS Catalog

    Folder Properties Dialog Box

    catalog.folders (SSISDB Database)

    Best Regards,
    Mona


    If the answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
    Hot issues in November--What can I do if my transaction log is full?
    Hot issues in November--How to convert Profiler trace into a SQL Server table?


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.