If you need to wipe all traces for some objects in your svn repository, you can do something like this:
# svnadmin dump REPOS_PATH | svndumpfilter \
<include|exclude> $string | \
svnadmin load REPOS_PATH_NEW
# mv REPOS_PATH REPOS_PATH_backup && REPOS_PATH_NEW \
REPOS_PATH
```