Fix for timeout exporting a SQL Azure DB using PowerShell or SQLPackage.exe
I have been trying to export a SQL Azure DB as a .BACPAC using the command line “C:Program Files (x86)Microsoft SQL Server120DACbinSqlPackage.exe” /action:Export /sourceservername:myserver.database.windows.net /sourcedatabasename:websitecontentdb /sourceuser:sa@myserver /sourcepassword: /targetfile:db.bacpac The problem is the command times out after around an hour, at the ‘Extracting schema from database’ stage. I got exactly the same issue if I use PowerShell as discussed in Sandrino Di Mattia’s post. The issue is the Azure service tier level I am running the SQL DB on. ...