问题描述
SqlPackage 提取与导出?
何时应该使用其中一个?
When should I use one or the other?
我需要将BD从Azure SQL传输到IaaS上的SQL Server.建议使用这种方法吗?
I need to Transfer a BD from Azure SQL to SQL Server on IaaS. Is this method advised?
Thinks
JD
推荐答案
它们都产生一个bacpac.没有区别.
我们使用以下命令将Azure SQL数据库导出到SQL Server VM IaaS上的本地驱动器.
Us the following command to export the Azure SQL Database to a local drive on the SQL Server VM IaaS.
SqlPackage/Action:Export/SourceServerName:SampleSQLServer.sample.net,1433/SourceDatabaseName:SampleDatabase/TargetFile:F:\Temp\SampleDatabase.bacpac"
SqlPackage /Action:Export /SourceServerName:SampleSQLServer.sample.net,1433 /SourceDatabaseName:SampleDatabase /TargetFile:"F:\Temp\SampleDatabase.bacpac"
希望这会有所帮助.
Hope this helps.
问候
Regards,
阿尔贝托·莫里洛
SQLCoffee.com
Alberto Morillo
SQLCoffee.com
这篇关于SqlPackage提取与导出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!