To backup your svn repository, you just type below command:
svnadmin dump [REPO_PATH] > [DUMP_FILE_PATH]
Replace [REPO_PATH] with your repository path and [DUMP_FILE_PATH] with your dump file path in your machine.
To backup only your latest revision, first you need to find out the latest revision number from your repository. To do that just run below command:
svnadmin verify [REPO_PATH]
It will list out the revision number and the most bottom will be your latest revision number. That will be referenced by [LATEST_REVISION_NUM] from now on. Run below command to backup only the latest revision from [REPO_PATH].
Then run below command to backup the latest revision from your repository:
svnadmin dump -r [LATEST_REVISION_NUM] [REPO_PATH] > [DUMP_FILE_PATH]
To restore your repository from a dump file, run following command:
svnadmin load [REPO_PATH] < [DUMP_FILE_PATH]