rodrigo89
rodrigo89

Reputation: 31

Converting an SVN repository to SQL database

I have downloaded the svn repository of Atunes using TortoiseSVN. I would like to transfer the logs of activity of the developers to a SQL database, preferably an Oracle one. Is there any software that can help me do this?

Upvotes: 3

Views: 319

Answers (1)

pdr
pdr

Reputation: 6440

You could do this:

  • Use svn log http://myrepo/etc --xml to get an XML output.
  • Pipe the output to a file, using whatever command line operating system you're on.
  • Import the XML to SQL Server

Upvotes: 4

Related Questions