How to Publish Visual Studio Database Project in VS 2015 -
i unable google this.
we have existing database project (sql server).
some new files (scripts) added.
we have existing server / database new scripts need run context.
in visual studio 2015, how can accomplish this?
i told stay inside visual studio 2015. ideally, i'd issue 1 command vs 1 each individual script.
you have couple of choices.
- the publish option. totally automated deployment of what's in db project target server. right-clicking project , selecting publish. option can used perform incremental deployment (only changes deployed) or can used wipe database clean followed full deployment of db project, check options before performing publishing.
- schema comparisons. schema comparisons perform comparison of db project target database, shows differences, , lets select differences deploy. can perform schema comparison adding new schema compare file database project.
in short, publish option allows automated brute force deployments whereas schema comparisons provide more flexibility letting choose changes deploy.
Comments
Post a Comment