将 Bacpac 文件导入 Azure SQL DB

发布于 2025-01-18 02:13:29 字数 294 浏览 1 评论 0原文

我本地有一个DB1的BACPAC文件。我希望BACPAC文件在数据库DB2中导入。 当我尝试使用SSMS中的导入选项(右键单击数据库和导入数据)导入文件时,没有选项可以连接到现有/已创建的DB。我有一个已经创建的DB,我只想将内容从BACPAC文件导入到DB2中。

I have a bacpac file of db1 in my local. I want the bacpac file to import in database db2.
When I was trying to import the file using import option in SSMS (right click database and import data) there is no option to connect to the existing/already created db. I have an already created db where I only want to import the contents from the bacpac file into the db2.
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

享受孤独 2025-01-25 02:13:29

SQL 数据库不支持,只能将 BACPAC 文件导入现有数据库新建或空数据库。

如果您想将内容文件导入数据库 2,有多种方法可以实现,

  1. 导出所有数据库表视图到Azure blob 并使用 SSMS 将这些文件导入到现有的 Azure SQL 数据库。请按照以下步骤操作

将数据导出到 Blob 存储

ref 1

ref 2

ref 3
ref 4

选择源表并查看->选择一个或多个表视图并复制 ->下一步->执行成功->关闭。

将数据从 Blob 存储导入到 SQL 数据库

您可以参考此文档:

https://www.sqlshack.com/connect-azure-storage-account-sql-server-management-studio-ssms/

SQL Database doesn’t support, import BACPAC file into Existing database not possible only New or Empty Database.

If you want to import the content file into Database 2, there are many ways you can get,

  1. Export all your Database table view to Azure blob and import these files to your existing Azure SQL database with SSMS. Follow these steps

Export Data to Blob Storage

ref 1

ref 2

ref 3
ref 4

Select source table and view -> Choose one or more table views and copy -> Next -> Execution successful -> close.

Import data from blob storage to SQL Database

You can reference this document:

https://www.sqlshack.com/connect-azure-storage-account-sql-server-management-studio-ssms/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文