Return-Path: Delivered-To: apmail-db-ddlutils-user-archive@www.apache.org Received: (qmail 18192 invoked from network); 27 Dec 2006 15:29:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Dec 2006 15:29:21 -0000 Received: (qmail 73468 invoked by uid 500); 27 Dec 2006 15:29:28 -0000 Delivered-To: apmail-db-ddlutils-user-archive@db.apache.org Received: (qmail 73455 invoked by uid 500); 27 Dec 2006 15:29:28 -0000 Mailing-List: contact ddlutils-user-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ddlutils-user@db.apache.org Delivered-To: mailing list ddlutils-user@db.apache.org Received: (qmail 73442 invoked by uid 99); 27 Dec 2006 15:29:28 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Dec 2006 07:29:28 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of tomdzk@gmail.com designates 66.249.92.168 as permitted sender) Received: from [66.249.92.168] (HELO ug-out-1314.google.com) (66.249.92.168) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Dec 2006 07:29:18 -0800 Received: by ug-out-1314.google.com with SMTP id y2so4369536uge for ; Wed, 27 Dec 2006 07:28:57 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=A/XxyCGlc5eFZEzog9ddpQw71c0smNshqnV70B1fwG2Chv0DNQBb2HxwBPsjFbByNJ3AWQS2zN1wvuosdKObzpdxyTWpIGg7Ov7vejbSp3xu1Hyafq8xTRMT2nGD+nqduRSVY77Ikgly8z74qRq1hQktBzFxfbLZg/PZwQAi9TY= Received: by 10.67.19.17 with SMTP id w17mr20240943ugi.1167233337452; Wed, 27 Dec 2006 07:28:57 -0800 (PST) Received: by 10.67.87.10 with HTTP; Wed, 27 Dec 2006 07:28:57 -0800 (PST) Message-ID: <224f32340612270728g1c951e00r5df2d0e2eec81f78@mail.gmail.com> Date: Wed, 27 Dec 2006 16:28:57 +0100 From: "Thomas Dudziak" To: ddlutils-user@db.apache.org Subject: Re: schema mix up ! In-Reply-To: <20061227013406.7647.qmail@web34410.mail.mud.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061227013406.7647.qmail@web34410.mail.mud.yahoo.com> X-Virus-Checked: Checked by ClamAV on apache.org On 12/27/06, Laurent ROCHE wrote: > There is a little problem when doing an export of a PostgreSQL database where there is two schema (say public and queries). > > The generation of schema.xml is OK. > > But when generating data.xml DDL Utils will fail as it will try to read the content of tab1 in QUERIES with the SQL: > select * from tab1 > instead of > select * from queries.tab1 You need to specify the schemapattern attribute at the ant task. Tom