Return-Path: Delivered-To: apmail-continuum-commits-archive@www.apache.org Received: (qmail 57928 invoked from network); 10 Sep 2008 16:37:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Sep 2008 16:37:45 -0000 Received: (qmail 65645 invoked by uid 500); 10 Sep 2008 16:37:42 -0000 Delivered-To: apmail-continuum-commits-archive@continuum.apache.org Received: (qmail 65619 invoked by uid 500); 10 Sep 2008 16:37:42 -0000 Mailing-List: contact commits-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@continuum.apache.org Delivered-To: mailing list commits@continuum.apache.org Received: (qmail 65610 invoked by uid 99); 10 Sep 2008 16:37:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Sep 2008 09:37:42 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Sep 2008 16:36:45 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 76678238896C; Wed, 10 Sep 2008 09:37:17 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r693886 - /continuum/trunk/continuum-docs/src/site/apt/installation/upgrade.apt Date: Wed, 10 Sep 2008 16:37:17 -0000 To: commits@continuum.apache.org From: olamy@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080910163717.76678238896C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olamy Date: Wed Sep 10 09:37:16 2008 New Revision: 693886 URL: http://svn.apache.org/viewvc?rev=693886&view=rev Log: add some comments concerning CONTINUUM-1688 Modified: continuum/trunk/continuum-docs/src/site/apt/installation/upgrade.apt Modified: continuum/trunk/continuum-docs/src/site/apt/installation/upgrade.apt URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-docs/src/site/apt/installation/upgrade.apt?rev=693886&r1=693885&r2=693886&view=diff ============================================================================== --- continuum/trunk/continuum-docs/src/site/apt/installation/upgrade.apt (original) +++ continuum/trunk/continuum-docs/src/site/apt/installation/upgrade.apt Wed Sep 10 09:37:16 2008 @@ -4,7 +4,7 @@ Olivier Lamy Emmanuel Venisse ------ - Nov 23 2007 + Sep 10 2008 ------ Upgrade @@ -16,6 +16,17 @@ There are 2 databases that need to be converted, one for the builds and one for the users. <> If you are upgrading from 1.1 to 1.2, no upgrade tool is needed. + + Due the fix of {{{http://jira.codehaus.org/browse/CONTINUUM-1688}CONTINUUM-1688}} : + + * if you use mssql server : you have to uncomment lines in a file in the webapp (WEB-INF/classes/META-INF/plexus/application.xml) (search mssql support). + + * if you use a 1.1 database you have to change manually the size of a column (in order to have the fix) : + ++------------------------------------------+ +-- command tested with derby database +alter table CHANGESET alter column CHANGECOMMENT SET DATA TYPE varchar(8192) ++------------------------------------------+ * Download The Tool @@ -28,6 +39,8 @@ * {{http://repo1.maven.org/maven2/org/apache/maven/continuum/data-management-cli/1.1-beta-4/data-management-cli-1.1-beta-4-app.jar}} * {{http://repo1.maven.org/maven2/org/apache/maven/continuum/data-management-cli/1.1/data-management-cli-1.1-app.jar}} + + * {{http://repo1.maven.org/maven2/org/apache/maven/continuum/data-management-cli/1.2/data-management-cli-1.2-app.jar}} The first version of this tool is 1.1-beta-2 @@ -58,7 +71,7 @@ +------------------------------------------+ java -Xmx512m -jar data-management-cli-1.1-app.jar -buildsJdbcUrl jdbc:derby:${new.continuum.home}/data/continuum/database -mode IMPORT -directory backups -java -Xmx512m -jar data-management-cli-1.1-app.jar -usersJdbcUrl jdbc:derby:${new.continuum.home}/data/users/database -mode IMPORT -directory backups +java -Xmx512m -jar data-management-cli-1.2-app.jar -usersJdbcUrl jdbc:derby:${new.continuum.home}/data/users/database -mode IMPORT -directory backups +------------------------------------------+ * <>