From users-return-5184-apmail-subversion-users-archive=subversion.apache.org@subversion.apache.org Wed Oct 06 02:36:30 2010 Return-Path: Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: (qmail 25008 invoked from network); 6 Oct 2010 02:36:30 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 6 Oct 2010 02:36:30 -0000 Received: (qmail 64301 invoked by uid 500); 6 Oct 2010 02:36:30 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 64162 invoked by uid 500); 6 Oct 2010 02:36:29 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 64155 invoked by uid 99); 6 Oct 2010 02:36:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Oct 2010 02:36:29 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=RCVD_IN_DNSWL_NONE,SPF_HELO_PASS,SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [80.67.31.24] (HELO smtprelay01.ispgateway.de) (80.67.31.24) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Oct 2010 02:36:21 +0000 Received: from [75.34.103.74] (helo=[192.168.7.75]) by smtprelay01.ispgateway.de with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.68) (envelope-from ) id 1P3JrK-0004jN-Uo; Wed, 06 Oct 2010 04:35:59 +0200 Subject: Re: dumping non-continuous ranges using svnadmin dump Mime-Version: 1.0 (Apple Message framework v1081) Content-Type: text/plain; charset=us-ascii From: Ryan Schmidt In-Reply-To: Date: Tue, 5 Oct 2010 21:35:55 -0500 Cc: Subversion Users Content-Transfer-Encoding: quoted-printable Message-Id: <380E8B51-4DC7-4F5F-A010-8728753A6BE7@ryandesign.com> References: <2FCAEE1D-1DD4-4961-A18E-87092BD6AD52@ryandesign.com> To: Tech Geek X-Mailer: Apple Mail (2.1081) X-Df-Sender: 368818 On Oct 5, 2010, at 11:06, Tech Geek wrote: >> svnadmin dump -r 1:15 sandbox > sandbox-dumpfile >> svnadmin dump -r 18:19 sandbox > sandbox-dumpfile2 >>=20 >> Then when it comes time to load, load the first file, then the second >=20 > Tried but does not work... >=20 > # svnadmin load sandbox-restore < sandbox-dumpfile > The above command restored it up to 15 revision as expected: > > <<< Started new transaction, based on original revision 15 > * editing path : PartA/trunk/source/README.txt ... done. >=20 > ------- Committed revision 15 >>> > >=20 > and then the following command: > # svnadmin load sandbox-restore < sandbox-dump2 >=20 > gave the error message: >=20 > > <<< Started new transaction, based on original revision 18 > svnadmin: File already exists: filesystem 'sandbox-restore/db', = transaction '18-a', path 'PartA' > * adding path : PartA ... > >=20 > The first method also ended up with the same error message. Investigate svnadmin dump's --incremental and/or --deltas flags.