vote up 5 vote down star

I am responsible for a small development team and we deal mainly with database development. We are currently using MS Visual Source Safe as our source control system, but it has its limitations and we are seriously thinking about changing. What system would you choose?

flag

7 Answers

vote up 2 vote down check

Look into using SVN, from personal experience I would stay far far away from ClearCase.

At my company we recently started using source control to track database changes in schema and stored procs. It has helped tremendously that we have it all under SVN to track the changes. Its a shame though that the previous 4 years worth of work has been lost because before now nothing about the DB was under any sort of revision control.

link|flag
vote up 1 vote down

Subversion, look for Visual SVN , it free and real easy to use.

You might also take a look at SQL Server database versioning with Subversion (SVN)

link|flag
vote up 9 vote down

For a small team, SVN is best, in my experience (I've used CVS, SVN, and VSS in the past).

It's powerful, has a large userbase, and good tools like web interfaces, etc.

Some folks will probably recommend git, but I think it's overkill for what you describe.

link|flag
One of the nice things about Git is it has very few dependencies (just libz, I think). This makes it easy to build and deploy on almost any system. Having said that, I would recommend SVN as well because the OP is already working in a Windows world. +1 – Greg Hewgill Oct 19 '08 at 19:38
Thanks Greg. I didn't mean overkill in terms of requirements, but learning curve, since it's pretty drastically different from the non-distributed source control approach (I think -- so far all I know about it is the buzz. One day I'll learn.) – SquareCog Oct 19 '08 at 19:48
One more advantage, SVN is opensource. – Guido GarcĂ­a Oct 24 '08 at 19:01
It's been a year since I posted this answer.. Update: I much prefer Mercurial now, even for small teams (currently, I am using it for 3 people). Ability to easily merge/branch, perform local commits for rollback without affecting others, and friendly svn-like commands (unlike git, which I've now also used). Plus it easily syncs with SVN and Git if you are working in parallel with a larger project. – SquareCog Oct 14 at 17:30
vote up 5 vote down

Our team uses Sourcegear's Vault, which is a lot like CVS or VSS, just without some of the wrinkles.

link|flag
vote up 3 vote down

Our team (.NET) a few months ago switched to Subversion / TortoiseSVN, VisualSVN (for VisualStudio integration) and Trac. I can't recommend these tools enough.

link|flag
vote up 1 vote down

I'd stay away from the centralized ones, distributed version control systems give much more flexibility, while still allowing centralized way of working.

For more technical people git could be good, it has been developed by Linux kernel people after all.

Bazaar or mercurial are probably better for those looking for ease of use.

link|flag
This article suggests that Git is alot simpler to use than you might at first believe: articles.sitepoint.com/article/version-control-git/… – rohancragg Oct 14 at 16:18
vote up 1 vote down

Perforce.

Commercial software, and it's not free like SVN, but it's great. Crossplatform, easy to use, GUIs, command lines, etc.

link|flag
If you can afford the licences it's a powerful system with decent customer support and continuous development. It's pretty capable at doing merges and from what I hear is something that's quite painful with Subversion/SVN. I'd advise pairing it with a good diff/merge tool - it allows you to hook any 3rd party tools in with it. – rohancragg Oct 14 at 16:21

Your Answer

Get an OpenID
or

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