Question

I want to migrate a database that I have in a windows azure server to another server in azure too. I have exported the existing database to a .bacpac file, however when I try to import to the other server, also in azure, it fails.

I want to export schema and data. My database contain DataSync columns, but I don't want to export the DataSyncs.

Using the SQL Server Management Studio, this process fails too.

How can I do this?

Thank in advance.

Was it helpful?

Solution

If you are using SQL Server in VM, I think you can just backup/restore your database. If you are using SQL Azure, given that you failed using BACPAC, it might be working through Generate Script + BCP, which means you can generate your database schema from SQL Server Management Studio, export and import data using BCP. Both of them you can specify which tables you want to migrate so you can skip those DataSync stuffs.

Hope helps.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top