Hi @ImranMaqsood ,
Welcome to Microsoft Q&A forum and thanks for your query.
- Is it a staged Copy? or Direct copy?
- Is it SQL pool or SQL On Demand?
Could you please try the below to see if this helps to resolve your issue.
- Open powershell and use Connect-AzAccount command to connect Azure account.
- Run Select-AzSubscription -SubscriptionId <subscriptionId> (replace subscription ID to your ID) Set-AzSqlServer -ResourceGroupName <your-database-server-resourceGroup> -ServerName <your-SQL-servername> –AssignIdentity (Note: Replace “your-database-server-resourceGroup” and “your-SQL-servername” with your values)
- Above three commands will generate an AAD identity for the SQL server that is hosting Azure Synapse.
Please refer to similar SO thread: https://stackoverflow.com/questions/59240875/manager-identity-error-when-running-a-pipeline-in-data-factory-with-staging-blob
Let us know how it goes.
Thank you
Please do consider to click on "Accept Answer" and "Upvote" on the post that helps you, as it can be beneficial to other community members.