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经典编辑器管道中传递它?
1条答案
按热度按时间wtzytmuj1#
以下SqlCmd变量缺少值:hrprocesses mld*02。
根据SQLCMD Variables,使用变量的格式为
/v:{PropertyName}={Value}
。要在Azure DevOps经典编辑器管道中的Azure SQL数据库部署任务中传递它,请将
/v:hrprocesses=somevalue /v:mld***02=anothervalue
添加到其他SqlPackage.exe参数。截图: