Visual Studio 2010 Database Projects!

I want to use a database project in visual studio 2010 so that we can manage the database version.

I used to use a database project, but we had a batch file that we had to add to any scripts we wanted to run. I did not ask this, and I am not sure if this is the best way to do this.

We just started using VS 2010 and would like to use it.

Basically, I am looking for any hints, tips, guides and general recommendations on setting up and using a database project in VS 2010.

thanks

+4
source share
1 answer

In case of problems with scripts in the database project, folders with pre-deployment and after deployment in the script folder will be created. Any custom scripts you need should be put there. A database project can be used to create a database from scratch. You can also use it by comparing schemas to create change scripts to migrate from an old version of the schema to the current version.

You should start with Microsoft Information on how to work with database projects in VS2010.

+2
source

Source: https://habr.com/ru/post/1308786/


All Articles