1

何,

我正在尝试使用 msdeploy 命令行工具将数据库从开发复制到测试。

除了我想在测试中删除数据库然后重新创建它们之外,它似乎有效

-verb:sync -source:dbFullSql="Data Source=DEVSERVER;Initial Catalog=XXX_Application;Integrated Security=true",dropDestinationDatabase=true -dest:dbFullSql="Data Source=111.111.111.111;Initial Catalog=XXX_Application;uid=admin;pwd=xxx;Integrated Security=false",dropDestinationDatabase=true

这是我的命令行。

为什么忽略 dropDestinationDatabase 选项?

管理员用户具有删除权限。

问候, 罗伯

4

1 回答 1

1

我认为您只需要将参数附加到 -dest:dbFullSql 开关

http://technet.microsoft.com/en-us/library/dd569036(WS.10).aspx

于 2011-07-22T02:14:44.490 回答