You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Ray Miller <ra...@sysdev.oucs.ox.ac.uk> on 2003/11/05 18:14:43 UTC

lstxns

If I run svnadmin lstxns on a repository, should I expect to see a
long list of transactions, or does this indicate a problem?  (The
repository in question is only accessed via mod_dav_svn, and there are
no current HTTP connections.)

-- 
Ray Miller, Unix Systems Programmer & Team Leader
Systems Development & Support, Oxford University Computing Services

Re: lstxns

Posted by "C. Michael Pilato" <cm...@collab.net>.
Ray Miller <ra...@sysdev.oucs.ox.ac.uk> writes:

> On Wed, Nov 05, 2003 at 12:19:15PM -0600, C. Michael Pilato wrote:
> > 
> > If you see a long list of transactions, it likely indicates only that
> > you have been using a repository longer than we have had code to
> > remove those transactions over DAV (a couple of releases).  :-)
> 
> Yes, we've been running 0.28.2 for a while, and just upgraded to
> 0.32.1 yesterday.  Is it a good idea to remove these transactions, or
> should I leave well alone?

If you know they aren't updates-in-progress, it's okay to remove them.
This little script will show you the transaction names and their
creation times -- might be handy for deciding what to keep and what
not to.

   #/bin/sh
   export REPOS_PATH=/path/to/repos
   for TXN_NAME in `svnadmin lstxns ${REPOS_PATH}`; do 
     echo -n "${TXN_NAME} : "
     svnlook date ${REPOS_PATH} -t ${TXN_NAME}
   done

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: lstxns

Posted by Ray Miller <ra...@sysdev.oucs.ox.ac.uk>.
On Wed, Nov 05, 2003 at 12:19:15PM -0600, C. Michael Pilato wrote:
> 
> If you see a long list of transactions, it likely indicates only that
> you have been using a repository longer than we have had code to
> remove those transactions over DAV (a couple of releases).  :-)

Yes, we've been running 0.28.2 for a while, and just upgraded to
0.32.1 yesterday.  Is it a good idea to remove these transactions, or
should I leave well alone?

-- 
Ray Miller, Unix Systems Programmer & Team Leader
Systems Development & Support, Oxford University Computing Services

Re: lstxns

Posted by "C. Michael Pilato" <cm...@collab.net>.
Ray Miller <ra...@sysdev.oucs.ox.ac.uk> writes:

> If I run svnadmin lstxns on a repository, should I expect to see a
> long list of transactions, or does this indicate a problem?  (The
> repository in question is only accessed via mod_dav_svn, and there are
> no current HTTP connections.)

If you see a long list of transactions, it likely indicates only that
you have been using a repository longer than we have had code to
remove those transactions over DAV (a couple of releases).  :-)

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org