How to create BAK file from azure sql db

后端 未结 1 1304
旧巷少年郎
旧巷少年郎 2021-01-13 05:49

I want to move my azure sql db to another host. However my new host allows to import sql db backup-files (.BAK) only; I found out how to generate .BACPAK files with SQL Ser

相关标签:
1条回答
  • 2021-01-13 06:19

    However my new host allows to import sql db backup-files (.BAK) only;

    SQL Azure doesn't provide a native way to generate '.bak' format backup file. If you did need this format file, you could import the BACPAC File to a local SQL Server which supports importing BACPAC File. After that, a new User Database will be created. Then you could generate a '.bak' format file from the local SQL Server.

    In addition, you also could try a tool named SqlAzureBakMaker which could make '.bak' file for you easily.

    0 讨论(0)
提交回复
热议问题