Problem 1
##[error]System.Management.Automation.ParentContainsErrorRecordException: *** Deployment cannot continueAn error occurred during deployment plan generation.
Cause
Target platform of SQL server on which you are trying to deploy your dacpac is different than target platform of dacpac file.
Possible solutions
Change target platform in your dacpac project as same as target platform of SQL server.

Add /p:AllowIncompatiblePlatform=true argument as additional argument to WinRm SQL server task.
Problem 2
##[error]Publishing to database 'testdb' on server 'ajyatest.database.windows.net'. Initializing deployment (Start) Initializing deployment (Failed) *** Could not deploy package. Unable to connect to master or target server 'testdb'. You must have a user with the same password in master or target server 'testdb'.
Cause
Wrong username or password to SQL server.
Possible solutions
Check if username and password are right for SQL server.
[You can verify username password using SSMS]
Problem 3
#
Cause
Wrong SQL server name is wrong.
Possible solutions
Check if SQL server with same name exist on Azure Portal.
Problem 4
Server name 'ajyatest1' is not in the right format. Use FQDN format like 'yyy.database.windows.net'
Cause
SQL server as input in not being provided as FQDN.
Possible solutions
As mentioned in error itself provide SQL server in format 'yyy.database.windows.net'
Problem 5
Cause
Check for endpoint URL for creating firewall rules. Verify if URL for endpoint is current.
Possible solutions
Check what’s wrong with endpoint. How user have created endpoint.
Problem 6
##[error]Start IP address of firewall rule cannot exceed End IP address.
Cause
End IP is smaller than Start IP for creating firewall rule.
Possible solutions
IP address for start IP should be smaller than end IP address.
Problem 7
##[error]Invalid value provided for parameter: startIpAddress
Cause
IP address is not in right format.
Possible solutions
IP address for start IP should be smaller than end IP address.
Problem 8
##[error] Named pipes provider, error: 40 – could not open a connect to SQL.
Possible suggestions
Suggestions
For onPrem SQL server
1. SQL server name should be in right format server\instance.
2. Verify connection string.
3. Check if Named Pipes (NP) is being enabled on the SQL instance.
4. Is Remote connection enabled.
For Azure SQL server
1. It could cause as per application throttled.
2. Try to give azure SQL server name with port 1433. E.g. servername.database.windows.net,1433;
Problem 9
How to configure timeout for SQLPackage.exe ?
Solution
/p:CommandTimeout=1200 /TargetTimeout: 1200
Problem 10
Does Azure SQL Database deployment with AAD integrated authentication supported on hosted agent?
Solution
No, AAD integrated authentication tries to login to SQL server with same user with which Agent is running. Since hosted agent user won't have permission on the SQL server because of security reasons.Hence it will fail. In other words, AAD integrated authencation is not supported for Hosted agent. Thought you can use Active Directory - Password authentication.
Problem 11
Azure SQL Database Deployment - Imported Invoke-Sqlcmd doesn't support connectionString
Solution
Imported Invoke-Sqlcmd doesn't support connectionString. Install SQLServer PS module.
Problem 12
SqlPackage.exe argument /p:BackupDatabaseBeforeChanges=true
fails on Azure
Solution
/p:BackupDatabaseBeforeChanges=true
options is for on-premise databases. That option doesn’t apply to Azure since the backup system is completely different.
Problem 13
Azure SQL Publish - SQL Script File - Not able to pass secret value as Variable
Solution
SQL script file supports secret variables. Make sure you are passing arguments for variables as follow.
Invoke-Sqlcmd -ServerInstance "test.database.windows.net" -Database "Testdb" -Username "test" -Password ****** -Inputfile "C:\test.sql" -variable "MYVAR1='$(variablevalue1)'", "MYVAR2='String2'" -ConnectionTimeout 120
Debug tools and suggestions
Documentation for SQLPackage.exe arguments
SQL Package arguments
Configure diagnostics logs for SQLPackage.exe
/diagnostics:true
Get debug logs from the task
Set release definition variable system.debug
with value true
SqlCMD arguments
SqlCmd arguments
Compare SqlCmd and Invoke-SqlCmd arguments
SqlCmd vs Invoke-SqlCmd arguments