提问人:CyberShrimp 提问时间:10/31/2023 最后编辑:CyberShrimp 更新时间:10/31/2023 访问量:33
SQLPackage 部署失败
SQLPackage Deployment Failure
问:
我正在使用 Azure DevsOps 发布管道,其中包含“部署 DacPac”步骤。它失败了,没有有用的错误。我什至从哪里开始尝试调试这样的东西?
2023-10-31T11:52:53.2467107Z ##[debug]Initializing deployment (Start)
2023-10-31T11:52:53.2478476Z ##[debug]Initializing deployment (Complete)
2023-10-31T11:52:53.2491000Z ##[debug]Analyzing deployment plan (Start)
2023-10-31T11:52:53.2503313Z ##[debug]Analyzing deployment plan (Complete)
2023-10-31T11:52:53.2515949Z ##[debug]Updating database (Start)
2023-10-31T11:52:53.2527690Z ##[debug]An error occurred while the batch was being executed.
2023-10-31T11:52:53.2540412Z ##[debug]Updating database (Failed)
2023-10-31T11:52:53.2707612Z ##[debug]Time elapsed 0:00:28.40
答:
0赞
Alberto Morillo
10/31/2023
#1
作为解决此问题的方法,请尝试以下步骤:
- 检查部署任务的日志,了解有关错误的详细信息。为此,可以在管道中启用调试模式,将变量 system.debug 设置为 true,然后再次运行管道。这将显示有关任务执行的更多详细信息。
- 根据错误消息,似乎已成功连接到数据库,但请确保使用 SQL Server Management Studio 或 PowerShell 测试凭据以连接到数据库。同时在 Azure SQL 防火墙上启用“允许访问 Azure 服务”。
- 尝试使用 SqlPackage.exe 中的 /p:AllowIncompatiblePlatform 选项,以防 dacpac 与 Azure SQL 存在一些不兼容问题。
- 查看任务中的部署选项、参数和设置。
评论
0赞
CyberShrimp
10/31/2023
1.我已经在调试更多了。2.数据库连接正常。3.没用。4.是DropObjectsNotInSource导致了错误。
0赞
Alberto Morillo
10/31/2023
也许添加这个 /p:DoNotDropObjectTypes=Permissions;用户(例如)和 DropObjectsNotInSource 可以提供帮助
评论