If you're worried about losing repository data, then doing automated backups is a possible solution. The "svnadmin dump" command is ideal for that.
I use this script to create dumps of all my repositories:
#!/bin/bash
DATE=`date "+%F"`
BACKUPDIR=/var/backup
# dump subversion repos.
# all subversion projects are in /usr/local/svn
for REPODIR in /usr/local/svn/*
do
REPONAME=`basename $REPODIR`
TARGET=svndump-$REPONAME-$DATE.gz
echo backing up svn repository $REPODIR to $TARGET
svnadmin dump $REPODIR | gzip > $BACKUPDIR/$TARGET || exit 1
done
This script is run from a cron job. You can add an rsync command to copy these dumps to a different server.