Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Subversion over SQL Server

Tags:

sql-server

svn

Is it possible to store Subversion meta data in SQL Server? We want a SQL Server based Subversion.

like image 401
PositiveGuy Avatar asked May 08 '26 03:05

PositiveGuy


2 Answers

There isn't anyway to do that right now. Subversion lets you choose between FSFS and Berkeley DB, with FSFS being the better choice for most people. (Berkeley DB has some issues around getting corrupt).

Is there a reason you want to store the data in SQL Server?

like image 52
James Avery Avatar answered May 11 '26 08:05

James Avery


I with James Avery - why do you want to store the data in an SQL Server? If you're wanting someway to interface with the underlying subversion data from a .NET library, check out SharpSVN: http://sharpsvn.open.collab.net/.

like image 38
Matt Avatar answered May 11 '26 06:05

Matt