I need to get a backup dump of a large (~8gb) svn repository. My current method involves using svnadmin dump to a file and then using 7-Zip to compress and spli
svnadmin dump
svnadmin dump dumps to standard out by default and the 7z command line can read from standard input using the -si switch.
svnadmin dump c:\path\to\myrepo | 7z a -si svndump.7z