How do I copy SQL Azure database to my local development server?

后端 未结 22 1188
抹茶落季
抹茶落季 2020-11-28 01:06

Does anyone know how I can copy a SQL Azure database to my development machine? I\'d like to stop paying to have a development database in the cloud, but it\'s the best way

22条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-28 01:29

    In SQL Server Management Studio

    Right click on the database you want to import, click Tasks > Export data-tier application, and export your database to a local .dacpac file.

    In your local target SQL server instance, you can right click Databases > Import data-tier application, and once it's local, you can do things like backup and restore the database.

提交回复
热议问题