0

We want to maintain our sql server scripts history. What is the solution? can we integrate SQL Server Management Studio 2008 with TFS 2010?

masoud ramezani
  • 22,228
  • 29
  • 98
  • 151
  • Check if this is a duplicate-helpful: http://stackoverflow.com/questions/6815065/sql-management-studio-and-tfs – pantelif Mar 28 '12 at 12:17

3 Answers3

2

Sure, there is, a DB professional which is a project type in the visual studio, this type of project will maintain DB objects as separate files so it can be treated as normal C# or VB file, for version control.

enter image description here

enter image description here

Mohamed.Radwan -MVP
  • 2,724
  • 2
  • 16
  • 24
0

SSMS is able to save sql files to SCCI compliant source control systems, such as TFS. Here is an article explaining how to achieve this.

However, this just saves sql files but doesn't assist in the versioning of the schema objects in your database. Should you need to do this, SQL Source Control, which we have developed at Red Gate, allows you to connect your SQL Server instance in SSMS to your back-end source control system, such as TFS.

David Atkinson
  • 5,759
  • 2
  • 28
  • 35
-1

How exactly does that integrate with SSMS??? You can still go behind the scenes with ssms and edit whatever you want, regardless of source control.