Azure devops sql部署(CD)问题

b5lpy0ml  于 2023-10-22  发布在  其他
关注(0)|答案(1)|浏览(106)

2023-10-19T13:31:25.4388982Z *** An error occurred during deployment plan generation. Deployment cannot continue.
2023-10-19T13:31:25.4389592Z Missing values for the following SqlCmd variables:hrprocesses mld***02.
2023-10-19T13:31:25.6721607Z ##[error]Publishing to database 'grctrackertest' on server '10.**.**.33'.

我需要在10.**.***.33服务器上部署,其中在脚本中引用的是10.***.**.34服务器,我在Azure经典编辑器CD管道中获得上述错误
如果我需要传递参数,如何在Azure DevOps经典编辑器管道中传递它?

wtzytmuj

wtzytmuj1#

以下SqlCmd变量缺少值:hrprocesses mld*02。
根据SQLCMD Variables,使用变量的格式为/v:{PropertyName}={Value}
要在Azure DevOps经典编辑器管道中的Azure SQL数据库部署任务中传递它,请将/v:hrprocesses=somevalue /v:mld***02=anothervalue添加到其他SqlPackage.exe参数
截图:

相关问题