1

Is it possible to ignore the snapshot options set in a given database project's project settings, when deploying its dacpac (either through sqlpackage.exe, DacFx or Visual Studio)?

Simon Green
  • 1,131
  • 1
  • 10
  • 28

1 Answers1

1

You can ignore all database properties during a dacpac publish... you can't specify which properties to ignore but they can all be ignored using /p:ScriptDatabaseOptions=False with sqlpackage.exe, for example

Simon Green
  • 1,131
  • 1
  • 10
  • 28