vote up 16 vote down star
3

What is the best way to version control my database objects? I'm using Visual studio 2005/2008 and SQL server 2005. I would prefer a solution which can be used with SVN.

flag

38% accept rate

10 Answers

vote up 12 vote down

Same as your other code, add a "Database project" to your application solution and keep the sql files used to build the database objects in there. Use the same version control for those code files as you do for the application.

Ron

link|flag
If you use ssms to extract your db objects to source files, beware what encoding is used. It's possible that unicode may be used without you knowing it - it least that's what I've experienced. It can be annoying when you want to make a quick change via a text editor and you get gibberish. – Steve Nov 23 at 17:07
vote up 4 vote down

Look at the tools offered by RedGate. They specifically deal with backup / restore / comparison cases for SQL Server objects including SP's. Alternately I am not sure but I think that Visual Studio allows you to check sp's into a repository. Havent tried that myself. But I can recommend RedGate tools. They have saved me a ton of trouble

link|flag
I'm the product manager for SQL Source Control, which is available to try in early access. It works with SVN and integrates with SSMS. Sign up at red-gate.com/Products/SQL_Source_Control/… . Comments welcome! – David Atkinson Feb 22 at 23:43
vote up 4 vote down

I use SVN for all of my table/sproc/function source control.

I couldn't find anything that met my needs so I ended up writing a utility to allow me to dump the code out into a nice directory structure to use with SVN.

For those interested, the source is now available at svn://finsel.com/public/VS2005/GenerateSVNFilesForSQL2005.

link|flag
Hi Josef, I've registered and tried to download your tool as it looks great but I get the error "Could not find file 'C:\DotNetNuke\Portals\0\Repository\InstallSVNFilesForSQL2005.3a21c4ac-399a-4006-9057-d9f409e13ce3.zip'." from your site? Is there any chance you will release the source for this? – Kieran Benton Mar 7 '09 at 12:33
Soon as I get my site back up, I'll post the code at my public SVN. – Josef Mar 10 '09 at 19:12
vote up 2 vote down

We use Subversion and all we do is save the sql code inthe directly for our subversion porject and then commit the code to the repository when we are ready and update from the repository before we start working on something already in there.

The real trick is to convince developers to do that. Our dbas do that by deleting any stored proc (or other database object) that isn't in Subversion periodically. Lose stuff once and pretty much no one does it again.

link|flag
tough love works the best! – Bill Mueller Dec 1 at 13:37
vote up 1 vote down

We do dumps to plaintext and keep them in our VCS.

You'd be able to script a backup-and-commit to do something similar.

link|flag
vote up 0 vote down

I don't know of a pre-packaged solution, sorry...

... but couldn't you just a little script that connected to the database and saved all the stored procedures to disk as text files? Then the script would add all the text files to the SVN repository by making a system call to 'svn add'.

Then you'd probably want another script to connect to the DB, drop all stored procedures and load all the repository stored procedures from disk. This script would need to be run each time you ran "svn up" and had new/changed stored procedures.

I'm not sure if this can be accomplished with MS SQL, but I'm fairly confident that MySQL would accommodate this. If writing SVN extensions to do this is too complicated, Capistrano supports checkin/checkout scripts, IIRC.

link|flag
vote up 0 vote down

Best way - one which works for you.

Easiest way - one that doesn't currently exist.

We use a semi-manual method (scripts under source control, small subset of people able to deploy stored procedures to the production server, changes to the schema should be reflected in changes to the underlying checked in files).

What we should do is implement some sort of source control vs plaintext schema dump diff ... but it generally 'works for us' although it's a really faff most of the time.

link|flag
vote up 0 vote down

Third party tool for SQL VERSION CONTROL

link|flag
vote up 0 vote down

Here is a complete solution: http://blog.boxedbits.com/archives/133 It uses a combination of vbs script and SQL. Works fine for me!

link|flag
vote up 0 vote down

This tool should do it:

SQL Server database versioning with Subversion (SVN)

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.