sql-server – 无法将SQL Azure bacpac导入2016 CTP

前端之家收集整理的这篇文章主要介绍了sql-server – 无法将SQL Azure bacpac导入2016 CTP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我非常熟悉从Azure sql V12导出到我的开发箱然后导入到我的本地sql(2014)实例的过程.我正在启动一个新的Win10盒子并安装了sql 2016 CTP.我正在连接到同一个Azure实例并可以对其进行操作 – 并且可以像2014年一样导出.bacpac.

但是,当我尝试导入到本地时,我得到:

Could not import package.
Warning sql72012: The object [FOO33_Data] exists in the target,but it will not be dropped even though you selected the 'Generate drop statements for objects that are in the target database but that are not in the source' check Box.
Warning sql72012: The object [FOO33_Log] exists in the target,but it will not be dropped even though you selected the 'Generate drop statements for objects that are in the target database but that are not in the source' check Box.
Error sql72014: .Net sqlClient Data Provider: Msg 547,Level 16,State 0,Line 3 The ALTER TABLE statement conflicted with the FOREIGN KEY constraint "FK_dbo.Address_dbo.User_idUser". The conflict occurred in database "FOO33",table "dbo.User",column 'idUser'.
Error sql72045: Script execution error.  The executed script:
PRINT N'Checking constraint: FK_dbo.Address_dbo.User_idUser [dbo].[Address]';

ALTER TABLE [dbo].[Address] WITH CHECK CHECK CONSTRAINT [FK_dbo.Address_dbo.User_idUser];

解决方法

由于这个问题也在MSDN上被询问和回答,我将在这里分享.
https://social.msdn.microsoft.com/Forums/azure/en-US/0b025206-5ea4-4ecb-b475-c7fabdb6df64/cannot-import-sql-azure-bacpac-to-2016-ctp?forum=ssdsgetstarted

来自链接答案的文字

我怀疑这里出现的问题是导出操作是使用在导出正在进行时更改的数据库实例执行的.这可能导致导出的表数据不一致,因为与sql Server的物理备份/还原不同,导出不保证事务一致性.相反,它们基本上是通过依次连接到数据库中的每个表并运行select *来执行的.当两个表之间存在外键关系并且读取表数据不一致时,在将数据写入数据库并导入代码尝试重新启用外键后导入期间会导致错误.我们建议使用数据库复制机制(创建数据库copyDb作为originalDb的副本),这保证了具有事务一致性的副本,然后从不变的数据库副本导出.

原文链接:https://www.f2er.com/mssql/78302.html

猜你在找的MsSQL相关文章