Return-Path: Delivered-To: apmail-db-derby-user-archive@www.apache.org Received: (qmail 43626 invoked from network); 12 Aug 2005 21:15:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 12 Aug 2005 21:15:53 -0000 Received: (qmail 31227 invoked by uid 500); 12 Aug 2005 21:15:52 -0000 Delivered-To: apmail-db-derby-user-archive@db.apache.org Received: (qmail 30907 invoked by uid 500); 12 Aug 2005 21:15:51 -0000 Mailing-List: contact derby-user-help@db.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Reply-To: "Derby Discussion" Delivered-To: mailing list derby-user@db.apache.org Received: (qmail 30894 invoked by uid 99); 12 Aug 2005 21:15:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Aug 2005 14:15:51 -0700 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=SPF_HELO_FAIL X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: 32.97.182.145 is neither permitted nor denied by domain of suresh.thalamati@gmail.com) Received: from [32.97.182.145] (HELO e5.ny.us.ibm.com) (32.97.182.145) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Aug 2005 14:16:11 -0700 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by e5.ny.us.ibm.com (8.12.11/8.12.11) with ESMTP id j7CLFl1C028146 for ; Fri, 12 Aug 2005 17:15:47 -0400 Received: from d01av04.pok.ibm.com (d01av04.pok.ibm.com [9.56.224.64]) by d01relay04.pok.ibm.com (8.12.10/NCO/VERS6.7) with ESMTP id j7CLFlZv229188 for ; Fri, 12 Aug 2005 17:15:47 -0400 Received: from d01av04.pok.ibm.com (loopback [127.0.0.1]) by d01av04.pok.ibm.com (8.12.11/8.13.3) with ESMTP id j7CLFlGK019239 for ; Fri, 12 Aug 2005 17:15:47 -0400 Received: from [127.0.0.1] (tsuresh.svl.ibm.com [9.30.40.155]) by d01av04.pok.ibm.com (8.12.11/8.12.11) with ESMTP id j7CLFjSm019010 for ; Fri, 12 Aug 2005 17:15:47 -0400 Message-ID: <42FD1180.3090902@gmail.com> Date: Fri, 12 Aug 2005 14:15:44 -0700 From: Suresh Thalamati User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Derby Discussion Subject: Re: Derby 10.1.1.0 SYSCS_UTIL.SYSCS_IMPORT_TABLE bug References: <9F481268BB38024FAA08E3C23C59D93840309E@atl-pzb1-mbx-00.ztel.com> In-Reply-To: <9F481268BB38024FAA08E3C23C59D93840309E@atl-pzb1-mbx-00.ztel.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Actually it is not a bug , that is the expected behavior in version 10.1 after derby-390 fix. table name in the following should be passed in upper case as TEST1 to the import procedure. After the derby-390 fix with 208770 patch you mentioned, If you create a schema, table, or column name as a non-delimited identifier, you must pass the name to the import procedure using all upper-case characters. If you created a schema, table, or column name as a delimited identifier, you must pass the name to the import procedure using the same case that was used when it was created. Thanks -suresht Delaune, Todd I wrote: > I noticed a problem with the built-in system procedure, > SYSCS_UTIL.SYSCS_IMPORT_TABLE. Under 10.0.2.1 this procedure works fine, > however the new version consistently produces table not found errors. As > you can see below, the table test does exist, however the procedure > doesn't acknolwedge it: > > > > ij> create table test (col integer); > > 0 rows inserted/updated/deleted > > ij> select * from test; > > COL > > ----------- > > > > 0 rows selected > > ij> call syscs_util.syscs_import_table(null, 'test', 'somefile', null, > null, null, 1); > > ERROR XIE0M: Table 'test' does not exist. > > > > I've been unable to find any other reference to this problem. I've > tested it with the old and new versions, using brand new databases, and > consistently the procedure fails only in 10.1.1.0. Perhaps it's related > to the 208770 patch? > (http://www.mail-archive.com/derby-dev@db.apache.org/msg06411.html) > > > > Thanks in advance, > > > > Todd Delaune >