SQL Server database to exchange information with the team?

Am I looking for a method to share SQL Server database structures and their contents / data with a team? We are currently using TFS 2013. If so, we can also switch to SVN / GIT, etc.

Thanks in advance.

+4
source share
3 answers

You should try Sql Server Data Toolswith the Visual Studio Database project. It works very well. You can also store code in any version control you like.

+1
source
+1

, SQL- . .

Tortoise Hq.

If you have a large database that you want to share with others that you have already created and filled, it is best to simply back up your database and provide them with a backup file for recovery on your system. After that, you can use scripts that modify data and structures. My preference is for scripts that generate or modify the structure of a database in version control software and data somewhere else.

0
source

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


All Articles