Here is what I did:
- Created export (.bacpac saved to storage account) of "my-db" Azure SQL Database using (new) management portal.
- Deleted the database "my-db" (using new Azure Portal) from "my-v12-azure-db-server".
- Again from the new Azure portal, attempted to import the .bacpac file from step one into "my-v12-azure-db-server".
Result: The database with the correct name is created, but it is empty. There are no errors returned through the UI. It contains none of the tables from the original database.
Other Things Tried: I was able to successfully import the same .bacpac file into other v12 db servers on the same Azure subscription. I also tried deleting the database server and re-creating it, but the same thing happens when I bring it back. In addition, I attempted deleting the db server using powershell, but after recreating it I had the same result.
Ideally I'd like to keep the same db server name and database name so that I do not have to change connection strings in source. Am I missing something?