我们有一个包含三个数据库项目的解决方案。所有三个生成的 dacpac 都是按顺序部署的,但由于某种原因,其中一个 dacpac 不运行部署后脚本。
我们正在使用 sqlpackage 创建一个 diffscript,并且 diffscript确实正确地包含了部署后语句。这是一个片段
IF EXISTS (SELECT * FROM #tmpErrors) ROLLBACK TRANSACTION
GO
IF @@TRANCOUNT>0 BEGIN
PRINT N'The transacted portion of the database update succeeded.'
COMMIT TRANSACTION
END
ELSE PRINT N'The transacted portion of the database update failed.'
GO
DROP TABLE #tmpErrors
GO
/*
Post-Deployment Script Template
--------------------------------------------------------------------------------------
This file contains SQL statements that will be appended to the build script.
Use SQLCMD syntax to include a file in the post-deployment script.
Example: :r .\myfile.sql
Use SQLCMD syntax to reference a variable in the post-deployment script.
--------------------------------------------------------------------------------------
*/
print 'SCRIPT: dbo.MEMTYPES.data.sql'
其中:a) 注释在 Header postdeployment.sql 脚本中,该脚本使用标准语法调用其他脚本: :r .\dbo.MEMTYPES.data.sql 和 b) 行“ print 'SCRIPT: dbo.MEMTYPES. data.sql'" 是部署后脚本中定义的第一个子脚本的第一行。
但是,在运行时,部署日志以以下行结尾:
The transacted portion of the database update succeeded.
这意味着已应用 dacpac 架构更改(并且确实如此),但大概没有尝试继续在脚本中运行部署后任务。
有任何想法吗?