Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 78664 invoked from network); 3 Jul 2007 16:01:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Jul 2007 16:01:36 -0000 Received: (qmail 6992 invoked by uid 500); 3 Jul 2007 16:01:38 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 6945 invoked by uid 500); 3 Jul 2007 16:01:38 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 6935 invoked by uid 99); 3 Jul 2007 16:01:38 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Jul 2007 09:01:38 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED,UPPERCASE_25_50 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Jul 2007 09:01:33 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id D807E7141EF for ; Tue, 3 Jul 2007 09:01:12 -0700 (PDT) Message-ID: <1371498.1183478472870.JavaMail.jira@brutus> Date: Tue, 3 Jul 2007 09:01:12 -0700 (PDT) From: "Laura Stewart (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Updated: (DERBY-2853) Import/Export examples doc corrections In-Reply-To: <11343407.1182443006467.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DERBY-2853?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Laura Stewart updated DERBY-2853: --------------------------------- Derby Info: [Patch Available] > Import/Export examples doc corrections > -------------------------------------- > > Key: DERBY-2853 > URL: https://issues.apache.org/jira/browse/DERBY-2853 > Project: Derby > Issue Type: Bug > Components: Documentation > Affects Versions: 10.3.0.0 > Reporter: Kathey Marsden > Assignee: Laura Stewart > Priority: Minor > Attachments: ctoolsimportjdbc.html, derby2853.diff, rtoolsimport91458.html > > > The following corrections are needed in the import/export examples. > http://db.apache.org/derby/docs/dev/tools/rtoolsimport91458.html > 1) > CALL SYSCS_UTIL.SYSCS_EXPORT_TABLE_LOBS_TO_EXTFILE('APP','STAFF' > 'c:\data\staff.del',',','"','UTF-8', 'c:\data\pictures.dat'); > Should be: > CALL SYSCS_UTIL.SYSCS_EXPORT_TABLE_LOBS_TO_EXTFILE(null,'STAFF', > 'c:\data\staff.del',',','"','UTF-8', 'c:\data\pictures.dat'); > 2) > CALL SYSCS_UTIL.SYSCS_IMPORT_TABLE_LOBS_FROM_EXTFILE( > 'APP','STAFF','c:\data\staff.del',',','"','UTF-8',0); > should be: > CALL SYSCS_UTIL.SYSCS_IMPORT_TABLE_LOBS_FROM_EXTFILE( > null,'STAFF','c:\data\staff.del',',','"','UTF-8',0); > http://db.apache.org/derby/docs/dev/tools/ctoolsimportjdbc.html > PreparedStatement ps=conn.prepareStatement( > "CALL SYSCS_UTIL.SYSCS_EXPORT_TABLE ?,?,?,?,?,?)"); > should be: > PreparedStatement ps=conn.prepareStatement( > "CALL SYSCS_UTIL.SYSCS_EXPORT_TABLE (?,?,?,?,?,?)"); > http://db.apache.org/derby/docs/dev/tools/ttoolsimporting.html > The format of the table looks a little odd. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.