An Azure relational database service.
Hi @Jaiprakash Maurya ,
The error indicates that the BACPAC import operation is failing because Microsoft Entra ID authentication is being blocked by a Conditional Access policy:
AADSTS53003: Access has been blocked by Conditional Access policies. The access policy does not allow token issuance.
The Azure SQL Import/Export service uses ActiveDirectoryPassword authentication in this scenario, and the import can fail if the Entra ID account is subject to Conditional Access requirements such as Multi-Factor Authentication (MFA). The Import/Export service does not support Entra ID authentication when MFA is required.
To resolve the issue, consider one of the following options:
- Use SQL Authentication credentials for the Azure SQL Database import instead of an Entra ID account.
- Use SqlPackage.exe to perform the BACPAC import if MFA or Conditional Access policies are enforced.
- Review the Conditional Access policies applied to the account and confirm whether they are preventing token issuance for the import operation.
For additional information, please refer to the following documentation:
- https://learn.microsoft.com/azure/azure-sql/database/database-import?view=azuresql#use-azure-portal
- https://learn.microsoft.com/azure/azure-sql/database/database-import?view=azuresql#use-sqlpackage
- https://learn.microsoft.com/azure/azure-sql/database/database-import?view=azuresql#limitations
Please let us know whether you are using SQL Authentication or Microsoft Entra ID Authentication for the import operation, and we'll be happy to assist further.