Return-Path: X-Original-To: apmail-db-derby-dev-archive@www.apache.org Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 87946DBB1 for ; Wed, 14 Nov 2012 01:36:15 +0000 (UTC) Received: (qmail 13509 invoked by uid 500); 14 Nov 2012 01:36:13 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 13469 invoked by uid 500); 14 Nov 2012 01:36:13 -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 13330 invoked by uid 99); 14 Nov 2012 01:36:12 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Nov 2012 01:36:12 +0000 Date: Wed, 14 Nov 2012 01:36:12 +0000 (UTC) From: "Oskar Zinger (JIRA)" To: derby-dev@db.apache.org Message-ID: <1600444145.111493.1352856972948.JavaMail.jiratomcat@arcas> Subject: [jira] [Created] (DERBY-5994) Different SQL State is returned when executing "shutdown=true" - locally or remotely MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Oskar Zinger created DERBY-5994: ----------------------------------- Summary: Different SQL State is returned when executing "shutdown=true" - locally or remotely Key: DERBY-5994 URL: https://issues.apache.org/jira/browse/DERBY-5994 Project: Derby Issue Type: Bug Components: JDBC, Network Client, Network Server, Replication Affects Versions: 10.8.2.2 Environment: Derby Embedded Network Server - Not specific to operating systems, software platforms or hardware specifications. Reporter: Oskar Zinger Different SQL State is returned when executing "shutdown=true" Derby URL attribute while executing the shutdown Database connection locally or remotely. Here is some background information: - Using the embedded Derby Network Server deployment (derbynet.jar) - Using the JDBC Derby Client (derbyclient.jar) - Using the Derby Engine (derby.jar) When executing the following - if database has not been booted yet (or already shutdown) - the SQL State Code is "XJ004": DriverManager.getConnection("jdbc:derby:;shutdown=true;deregister=false", user, pass); When executing the following - if database has not been booted yet (or already shutdown) - the SQL State Code is "08004": DriverManager.getConnection("jdbc:derby://:/;shutdown=true;deregister=false", user, pass); The SQL State Code of "08004" usually is returned with an SQL Exception if "User Authentication is Invalid" for example username and / or password is incorrect. Here is the error message: Error Code: '40000', SQL State Code: '08004' and Exception: 'java.sql.SQLNonTransientConnectionException: The connection was refused because the database ;shutdown=true;deregister=false was not found.' Separately, the error message "database was not found" is actually misleading because the database actually does exist and it just has not been been booted yet, or it has already been shutdown. The Derby Network Server has not been shutdown, only the database and it is possible to check if the database exists on the file system. The reason why this is important is because when using Derby Replication, when replication is started - the databases must be identical and in sync, so the database must be shutdown cleanly, copied over, and replication will be started. Since the Salve Derby must start before Master Derby, it is required to be able to remotely shutdown the Master Derby database from the Slave Derby instance (host). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira