英文:
Delete table is not working in SQL automate using dacpac in Azure pipeline
问题
我正在尝试使用Azure中的dacpac在生成和发布流水线中部署SQL更改。创建和更新表格在发布期间按预期运行。但是,当我尝试删除数据库时,即使发布成功,它也不起作用。
英文:
I'm trying to deploy the SQL changes using build and release pipeline in Azure using dacpac. Creating and updating the table is working as expected using the release. But when i try to delete the database, it's not working even though my release is succeeded.
答案1
得分: 0
It worked after adding /p:DropObjectsNotInSource=true.
英文:
> It worked after adding /p:DropObjectsNotInSource=true
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论