Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 4169 invoked from network); 10 Jul 2006 18:10:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 10 Jul 2006 18:10:33 -0000 Received: (qmail 82656 invoked by uid 500); 10 Jul 2006 18:10:28 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 82619 invoked by uid 500); 10 Jul 2006 18:10:28 -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 82602 invoked by uid 99); 10 Jul 2006 18:10:28 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Jul 2006 11:10:28 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Jul 2006 11:10:27 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id ACE8341048E for ; Mon, 10 Jul 2006 18:08:32 +0000 (GMT) Message-ID: <32189296.1152554912705.JavaMail.jira@brutus> Date: Mon, 10 Jul 2006 18:08:32 +0000 (GMT+00:00) From: "Stan Bradbury (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Commented: (DERBY-571) Virtual Table Mapping for no argument Diagnostic tables In-Reply-To: <502033068.1126805695546.JavaMail.jira@ajax.apache.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 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 [ http://issues.apache.org/jira/browse/DERBY-571?page=comments#action_12420139 ] Stan Bradbury commented on DERBY-571: ------------------------------------- Intending to open a documentation sub-task on this - no open issue found regarding docuementing the diagnostic tables of SYSCS_DIAG. Minimally the existance of the schema and tables need to be listed. > Virtual Table Mapping for no argument Diagnostic tables > ------------------------------------------------------- > > Key: DERBY-571 > URL: http://issues.apache.org/jira/browse/DERBY-571 > Project: Derby > Type: Improvement > Components: SQL > Reporter: Daniel John Debrunner > Assignee: Daniel John Debrunner > Priority: Minor > Fix For: 10.2.0.0 > > Currently four no-argument diagnostic tables exist that provide information about the running state of Derby, or its error messages. > These tables are invoked using an awkward, non-standard syntax. As an example: > SELECT * FROM NEW org.apache.derby.diag.LockTable() as LOCK_TABLE > The improvement will provide an internal mapping from a regular table name in the SYSCS_DIAG schema > to the runtime virtual table code. Thus the above example would be replaced by: > SELECT * FROM SYSCS_DIAG.LOCK_TABLE > These diagnostic table expressions are regular table expressions (as is the NEW VTI construct) and > can be used wherever a normal table can. > Any DDL, INSERT/UPDATE/DELETE, compression procedure etc. that references a diagnostic table > will result in an exception. > The old style syntax will remain in place for 10.2, but become deprecated. > The tables to be implemented in this change are: > SYSCS_DIAG.LOCK_TABLE replaces org.apache.derby.diag.LockTable > SYSCS_DIAG.STATEMENT_CACHE replaces org.apache.derby.diag.StatementCache > SYSCS_DIAG.TRANSACTION_TABLE replaces org.apache.derby.diag.TransactionTable > SYSCS_DIAG.ERROR_MESSAGES replaces org.apache.derby.diag.ErrorMessages > Adding such a table will be table driven, thus easy for others to provide additional diagnostics. > Information about these diagnostic tables will not appear in the system catalogs or JDBC DatabaseMetaData. > The ResultSetMetaData for the any query involving a diagnostic table will be valid. > This is a first step in a progression towards supporing a fully application/user defined virtual table. > These steps are not part of this jira issue, but added for information purposes. > - second step - supporting diagnostic tables with parameters, e.g. > SELECT * FROM SYSCS_DIAG.SPACE_TABLE('sales', 'orders'); > - third step - providing a create virtual table statement (most databases support > some form of virtual table, or wrappers). The DDL would be non-standard but the > data access would be standard. [need to check table functions in part 13 of SQL standard] > E.g. syntax yet to be defined, but to give the general idea > CREATE VIRTUAL TABLE (TICKER VARCHAR(10), START TIMESTAMP, END TIMESTAMP) > LANGUAGE JAVA > PARAMETER STYLE JAVA > EXTERNAL NAME 'com.acme.stocks.historyFromYahooFinance'; -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira