SQL Source Control 7

Set database-level settings

Pre-Deployment script to set the database Recovery Model to Simple

  1. ALTER DATABASE CURRENT SET RECOVERY SIMPLE
  2. GO
  3. IF @@ERROR <> 0 SET NOEXEC ON
  4. GO

Pre-Deployment script to set the database Collation to Danish

  1. ALTER DATABASE CURRENT COLLATE Danish_Norwegian_CI_AS
  2. GO
  3. IF @@ERROR <> 0 SET NOEXEC ON
  4. GO

Pre-Deployment script to add a Filegroup and File

  1. IF NOT EXISTS (SELECT * FROM sys.filegroups WHERE name = 'MyFileGroup')
  2. BEGIN
  3. PRINT N'Adding filegroup MyFileGroup to database'
  4. ALTER DATABASE CURRENT ADD FILEGROUP MyFileGroup
  5. END
  6. GO
  7. IF @@ERROR <> 0 SET NOEXEC ON
  8. GO
  9.  
  10. IF NOT EXISTS (SELECT * FROM sys.database_files WHERE name = 'MyFile')
  11. BEGIN
  12. IF @@SERVERNAME = 'DEV-DEVELOPERNAME'
  13. BEGIN
  14. PRINT N'Adding file MyFile to filegroup MyFileGroup'
  15. ALTER DATABASE CURRENT
  16. ADD FILE
  17. (
  18. NAME = MyFile,
  19. FILENAME = 'C:\Program Files\Microsoft SQL Server\MSSQL13.MSSQLSERVER\MSSQL\DATA\MyFile.mdf'
  20. )
  21. TO FILEGROUP MyFileGroup
  22. END
  23. END
  24. GO
  25. IF @@ERROR <> 0 SET NOEXEC ON
  26. GO

Notable points:

  • Pre-Deployment scripts must be re-runnable as they will be executed as part of every deployment.
    • Object existence checks are used for both MyFileGroup and MyFile to ensure they are not created twice.
  • Pre-Deployment scripts are deployed to every environment.
    • CURRENT is used because the database may have different names in different environments.
    • Other environment specific differences such as file paths may need to change between servers. Here, we use @@SERVERNAME to allow environment specific paths.
  • By default there is no error handling, so this script tests for an error, and sets NOEXEC to ON if an error occurs.

Didn't find what you were looking for?