Transaction handling

By default, Pre & Post-Deployment scripts do not contain any transaction handling and are run outside of any transactions.

A simplified example of the generated deployment script looks like:

Simplified deployment script including Pre & Post-Deployment scripts Toggle source code

  1. SET XACT_ABORT ON
  2. GO
  3. SET TRANSACTION ISOLATION LEVEL Serializable
  4. GO
  5. -- The Pre-Deployment script gets inserted here
  6. GO
  7. BEGIN TRANSACTION
  8. GO
  9. IF @@ERROR <> 0 SET NOEXEC ON
  10. GO
  11. PRINT N'Creating [dbo].[myStoredProcedure]'
  12. GO
  13. CREATE PROC [dbo].[myStoredProcedure] AS SELECT 1
  14. GO
  15. IF @@ERROR <> 0 SET NOEXEC ON
  16. GO
  17. COMMIT TRANSACTION
  18. GO
  19. IF @@ERROR <> 0 SET NOEXEC ON
  20. GO
  21. -- The Post-Deployment script gets inserted here
  22. GO
  23. DECLARE @Success AS BIT
  24. SET @Success = 1
  25. SET NOEXEC OFF
  26. IF (@Success = 1) PRINT 'The database update succeeded'
  27. ELSE BEGIN
  28. IF @@TRANCOUNT > 0 ROLLBACK TRANSACTION
  29. PRINT 'The database update failed'
  30. END
  31. GO

Adding transaction handling to Pre & Post-Deployment scripts

You can write any SQL in Pre & Post-Deployment scripts, including your own transaction handling. For example:

  1. BEGIN TRANSACTION
  2. GO
  3. IF @@ERROR <> 0 SET NOEXEC ON
  4. GO
  5. ALTER DATABASE CURRENT SET RECOVERY SIMPLE
  6. GO
  7. IF @@ERROR <> 0 SET NOEXEC ON
  8. GO
  9. COMMIT TRANSACTION
  10. GO
  11. IF @@ERROR <> 0 SET NOEXEC ON
  12. GO

If written this way, the deployment is not atomic - the transaction for the Pre-Deployment script may be committed whilst the main transaction is rolled back. If an atomic deployment is required, you can BEGIN a transaction in the Pre-Deployment script and COMMIT it in the Post-Deployment script. As a consequence, the main transaction will be nested within this outer transaction.


Didn't find what you were looking for?