About 66,000 results
Open links in new tab
  1. How to unpack a DACPAC? - Database Administrators Stack …

    Feb 22, 2020 · The .dacpac file is a zip archive, and you can open it using an archiver application. This can be useful if you want to see what is in the file before importing into the database.

  2. Exclude certain schema along with unnamed constraints in SSDT

    Jun 8, 2020 · Task Automate database deployment (SSDT/dacpac deployment with CI/CD) The database is a 3rd party database It also includes our own customized tables/SP/Fn/Views in …

  3. DACPAC drops existing users and permissions from database …

    Aug 17, 2022 · 2 I'm developing my database through a database project in visual studio, and whenever I need to upgrade the schema of my database I like to use SSMS to do this using a …

  4. sql server - Replication Blocks Code Deployment - Database ...

    May 22, 2014 · What we do is - if the deployment involves/affects replicated tables then manually drop replication. Script out drop and create replication using GUI or Powershell Drop the …

  5. Schema Migration: SQL Server Data Tools vs Liquibase and Flyway

    Nov 20, 2015 · DACPAC applies all the changes in one transaction; meaning if there 5 table changes in the upgrade and one of them fails, the entire transaction is rolled back. Flyway …

  6. sql server - Excluding database objects from a DacPac database ...

    Dec 3, 2020 · As I understand it, a sql server DacPac (visual studio data-tier app) applies to the entire database that it's deployed in. However, for my particular database, I have some tables …

  7. sql server - DACPAC Deployment Rebuilding All Indexes

    Sep 6, 2019 · 2 The most likely reason this is happening is because there are different options / settings on the indexes in the model (the dacpac file) and the target (your actual database). …

  8. DACPAC and database drift: db users are always detected as drift …

    When I include a login and user in my SSDT DB project and try to deploy a DACPAC using the "Block publish when database has drifted from registered version" option, it always detects …

  9. sql server - DACPAC: Altering primary key results in rebuilding …

    Sep 16, 2021 · DACPAC: Altering primary key results in rebuilding tables during deployment Ask Question Asked 4 years, 1 month ago Modified 3 years, 11 months ago

  10. scripting - SQL Server - Adding non-nullable column to existing …

    When I deploy, before running sqlpackage.exe against the dacpac file, I run "pre-dac.sql" via sqlcmd.exe. Hope that helps, I should really write in more detail about this sometime.