From commits-return-7922-archive-asf-public=cust-asf.ponee.io@trafodion.apache.org Mon Jul 2 11:53:57 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 370EA180718 for ; Mon, 2 Jul 2018 11:53:55 +0200 (CEST) Received: (qmail 81014 invoked by uid 500); 2 Jul 2018 09:53:54 -0000 Mailing-List: contact commits-help@trafodion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: commits@trafodion.apache.org Delivered-To: mailing list commits@trafodion.apache.org Received: (qmail 80893 invoked by uid 99); 2 Jul 2018 09:53:54 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Jul 2018 09:53:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 36DB2E0BC0; Mon, 2 Jul 2018 09:53:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: liuyu@apache.org To: commits@trafodion.apache.org Date: Mon, 02 Jul 2018 09:54:01 -0000 Message-Id: <39ec76c737384e8a8802f45fc2c2a176@git.apache.org> In-Reply-To: <59615416207542f39a2363ae305d2325@git.apache.org> References: <59615416207542f39a2363ae305d2325@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [10/20] trafodion-site git commit: Publish Website Updates PR 1614 [TRAFODION-3114] Add *Syntax Descriptions and Examples* for *GET Statement* in *Trafodion SQL Reference Manual* http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/2.3.0/sql_reference/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/2.3.0/sql_reference/dependencies.html b/docs/2.3.0/sql_reference/dependencies.html index 6bbe215..382c7d6 100644 --- a/docs/2.3.0/sql_reference/dependencies.html +++ b/docs/2.3.0/sql_reference/dependencies.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
- Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
Trafodion SQL Reference Manual http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/2.3.0/sql_reference/index.html ---------------------------------------------------------------------- diff --git a/docs/2.3.0/sql_reference/index.html b/docs/2.3.0/sql_reference/index.html index 1cd4a1d..4a3142f 100644 --- a/docs/2.3.0/sql_reference/index.html +++ b/docs/2.3.0/sql_reference/index.html @@ -11725,21 +11725,37 @@ in the Trafodion instance.

GET option
 
 option is:
-    COMPONENT PRIVILEGES ON component-name [FOR auth-name]
+    CATALOGS
+  | COMPONENT PRIVILEGES ON component-name [FOR auth-name]
   | COMPONENTS
   | FUNCTIONS FOR LIBRARY [[catalog-name.]schema-name.]library-name
   | FUNCTIONS [IN SCHEMA [catalog-name.]schema-name]
+  | HBASE REGISTERED TABLES IN CATALOG TRAFODION
+  | HIVE EXTERNAL TABLES IN CATALOG TRAFODION
+  | HIVE REGISTERED {OBJECTS | SCHEMAS | TABLES | VIEWS} IN CATALOG TRAFODION
+  | INDEXES [IN SCHEMA schema-name]
+  | INDEXES [ON TABLE table-name]
   | LIBRARIES [IN SCHEMA [catalog-name.]schema-name]
   | PROCEDURES FOR LIBRARY [[catalog-name.]schema-name.]library-name
   | PROCEDURES [IN SCHEMA [catalog-name.]schema-name]
   | ROLES [FOR USER database-username]
+  | SEQUENCES [IN CATALOG catalog-name]
+  | SEQUENCES [IN SCHEMA schema-name}]
   | SCHEMAS [IN CATALOG catalog-name]
   | SCHEMAS FOR [USER | ROLE] authorization-id
+  | TABLES [IN CATALOG catalog-name]
   | TABLES [IN SCHEMA [catalog-name.]schema-name]
+  | TABLES [IN VIEW view-name]
   | USERS [FOR ROLE role-name]
+  | VIEWS [IN CATALOG catalog-name]
   | VIEWS [IN SCHEMA [catalog-name.]schema-name]
+  | VIEWS [IN VIEW view-name]
+  | VIEWS [ON VIEW view-name]
   | VIEWS ON TABLE [[catalog-name.]schema-name.]table-name
-  | PRIVILEGES FOR {USER | ROLE} authorization-id
+ | PRIVILEGES FOR {USER database-username | ROLE role-name} + | PRIVILEGES ON SEQUENCE sequence-name + | PRIVILEGES ON TABLE table-name + | PRIVILEGES ON VIEW view-name
@@ -11877,6 +11893,12 @@ and the schema is seabase.

  • +

    TABLES [IN VIEW view-name]

    +
    +

    returns tables that referenced by the view view-name.

    +
    +
  • +
  • USERS

    displays a list of all the registered database users.

    @@ -11908,9 +11930,24 @@ and the schema is seabase.

  • +

    VIEWS [IN VIEW view-name]

    +
    +

    returns views that referenced by the view view-name.

    +
    +
  • +
  • +

    VIEWS [ON VIEW view-name]

    +
    +

    returns views that reference the view view-name.

    +
    +
  • +
  • VIEWS ON TABLE [[catalog-name.]schema-name.]table-name

    -

    displays the names of all the views that were created for the specified table. If you do not qualify the table name with +

    returns views that reference the table table-name.

    +
    +
    +

    If you do not qualify the table name with catalog and schema names, get uses the catalog and schema of the current session. For the catalog-name, you can specify only trafodion.

    @@ -12038,6 +12075,118 @@ TRAFODION.SEABASE:

  • +

    This example makes comparisons among GET VIEWS [IN VIEW view-name], GET VIEWS [ON VIEW view-name], GET VIEWS [ON TABLE table-name] +and GET TABLES [IN VIEW view-name].

    +
    +

    Creates the table t1.

    +
    +
    +
    +
    SQL>CREATE TABLE t1 (c1 int);
    +
    +--- SQL operation complete.
    +
    +
    +
    +

    Creates the view v1 based on the table t1.

    +
    +
    +
    +
    SQL>CREATE VIEW v1 AS SELECT * FROM t1;
    +
    +--- SQL operation complete.
    +
    +
    +
    +

    Creates the view v2 based on the view v1.

    +
    +
    +
    +
    SQL>CREATE VIEW v2 AS SELECT * FROM v1;
    +
    +--- SQL operation complete.
    +
    +
    +
    +

    This statement returns nothing as no views are referenced by v1.

    +
    +
    +
    +
    SQL>GET VIEWS IN VIEW v1;
    +
    +--- SQL operation complete.
    +
    +
    +
    +

    This statement returns v1 as v1 is referenced by v2.

    +
    +
    +
    +
    SQL>GET VIEWS IN VIEW v2;
    +
    +TRAFODION.SEABASE.V1
    +
    +--- SQL operation complete.
    +
    +
    +
    +

    This statement returns v2 as v2 references v1.

    +
    +
    +
    +
    SQL>GET VIEWS ON VIEW v1;
    +
    +TRAFODION.SEABASE.V2
    +
    +--- SQL operation complete.
    +
    +
    +
    +

    This statement returns nothing as no views reference v2.

    +
    +
    +
    +
    SQL>GET VIEWS ON VIEW v2;
    +
    +--- SQL operation complete.
    +
    +
    +
    +

    This statements returns v1 as v1 references t1.

    +
    +
    +
    +
    SQL>GET VIEWS ON TABLE t1;
    +
    +TRAFODION.SEABASE.V1
    +
    +--- SQL operation complete.
    +
    +
    +
    +

    This statement returns t1 as t1 is referenced by v1.

    +
    +
    +
    +
    SQL>GET TABLES IN VIEW v1;
    +
    +TRAFODION.SEABASE.T1
    +
    +--- SQL operation complete.
    +
    +
    +
    +

    This statement returns nothing as no tables are referenced by v2.

    +
    +
    +
    +
    SQL>GET TABLES IN VIEW v2;
    +
    +--- SQL operation complete.
    +
    +
    +
  • +
  • This GET statement displays the names of the libraries in the catalog and schema of the current session, which happens to be TRAFODION.SEABASE:

    http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/2.3.0/sql_reference/integration.html ---------------------------------------------------------------------- diff --git a/docs/2.3.0/sql_reference/integration.html b/docs/2.3.0/sql_reference/integration.html index 7f592ef..952a05c 100644 --- a/docs/2.3.0/sql_reference/integration.html +++ b/docs/2.3.0/sql_reference/integration.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion SQL Reference Manual http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/2.3.0/sql_reference/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/2.3.0/sql_reference/issue-tracking.html b/docs/2.3.0/sql_reference/issue-tracking.html index 16847f2..3de6bb9 100644 --- a/docs/2.3.0/sql_reference/issue-tracking.html +++ b/docs/2.3.0/sql_reference/issue-tracking.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion SQL Reference Manual http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/2.3.0/sql_reference/license.html ---------------------------------------------------------------------- diff --git a/docs/2.3.0/sql_reference/license.html b/docs/2.3.0/sql_reference/license.html index a352bab..0c39351 100644 --- a/docs/2.3.0/sql_reference/license.html +++ b/docs/2.3.0/sql_reference/license.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion SQL Reference Manual http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/2.3.0/sql_reference/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/2.3.0/sql_reference/mail-lists.html b/docs/2.3.0/sql_reference/mail-lists.html index 0378eb4..acba955 100644 --- a/docs/2.3.0/sql_reference/mail-lists.html +++ b/docs/2.3.0/sql_reference/mail-lists.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion SQL Reference Manual http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/2.3.0/sql_reference/project-info.html ---------------------------------------------------------------------- diff --git a/docs/2.3.0/sql_reference/project-info.html b/docs/2.3.0/sql_reference/project-info.html index 62a9f2e..974988e 100644 --- a/docs/2.3.0/sql_reference/project-info.html +++ b/docs/2.3.0/sql_reference/project-info.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion SQL Reference Manual http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/2.3.0/sql_reference/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/2.3.0/sql_reference/project-summary.html b/docs/2.3.0/sql_reference/project-summary.html index 8b29d17..b0f333a 100644 --- a/docs/2.3.0/sql_reference/project-summary.html +++ b/docs/2.3.0/sql_reference/project-summary.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion SQL Reference Manual http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/2.3.0/sql_reference/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/2.3.0/sql_reference/source-repository.html b/docs/2.3.0/sql_reference/source-repository.html index fa339ae..6357ac6 100644 --- a/docs/2.3.0/sql_reference/source-repository.html +++ b/docs/2.3.0/sql_reference/source-repository.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion SQL Reference Manual http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/2.3.0/sql_reference/team-list.html ---------------------------------------------------------------------- diff --git a/docs/2.3.0/sql_reference/team-list.html b/docs/2.3.0/sql_reference/team-list.html index 08f20be..1d1860a 100644 --- a/docs/2.3.0/sql_reference/team-list.html +++ b/docs/2.3.0/sql_reference/team-list.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion SQL Reference Manual http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/client_install/Trafodion_Client_Installation_Guide.pdf ---------------------------------------------------------------------- diff --git a/docs/client_install/Trafodion_Client_Installation_Guide.pdf b/docs/client_install/Trafodion_Client_Installation_Guide.pdf index 9fd8381..2f40b0a 100644 Binary files a/docs/client_install/Trafodion_Client_Installation_Guide.pdf and b/docs/client_install/Trafodion_Client_Installation_Guide.pdf differ http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/client_install/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/client_install/dependencies.html b/docs/client_install/dependencies.html index 4413183..fe367af 100644 --- a/docs/client_install/dependencies.html +++ b/docs/client_install/dependencies.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Client Installation Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/client_install/integration.html ---------------------------------------------------------------------- diff --git a/docs/client_install/integration.html b/docs/client_install/integration.html index 6cb3027..2ce7804 100644 --- a/docs/client_install/integration.html +++ b/docs/client_install/integration.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Client Installation Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/client_install/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/client_install/issue-tracking.html b/docs/client_install/issue-tracking.html index 082aa6f..fa8ae1d 100644 --- a/docs/client_install/issue-tracking.html +++ b/docs/client_install/issue-tracking.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Client Installation Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/client_install/license.html ---------------------------------------------------------------------- diff --git a/docs/client_install/license.html b/docs/client_install/license.html index 5ed42bc..e7d98b8 100644 --- a/docs/client_install/license.html +++ b/docs/client_install/license.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Client Installation Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/client_install/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/client_install/mail-lists.html b/docs/client_install/mail-lists.html index aa3842c..de94ab1 100644 --- a/docs/client_install/mail-lists.html +++ b/docs/client_install/mail-lists.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Client Installation Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/client_install/project-info.html ---------------------------------------------------------------------- diff --git a/docs/client_install/project-info.html b/docs/client_install/project-info.html index c238d13..b3ae388 100644 --- a/docs/client_install/project-info.html +++ b/docs/client_install/project-info.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Client Installation Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/client_install/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/client_install/project-summary.html b/docs/client_install/project-summary.html index 7452ed4..8cb3de0 100644 --- a/docs/client_install/project-summary.html +++ b/docs/client_install/project-summary.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Client Installation Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/client_install/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/client_install/source-repository.html b/docs/client_install/source-repository.html index 27abbd5..2e9a213 100644 --- a/docs/client_install/source-repository.html +++ b/docs/client_install/source-repository.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Client Installation Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/client_install/team-list.html ---------------------------------------------------------------------- diff --git a/docs/client_install/team-list.html b/docs/client_install/team-list.html index d99e568..776115f 100644 --- a/docs/client_install/team-list.html +++ b/docs/client_install/team-list.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Client Installation Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/command_interface/Trafodion_Command_Interface_Guide.pdf ---------------------------------------------------------------------- diff --git a/docs/command_interface/Trafodion_Command_Interface_Guide.pdf b/docs/command_interface/Trafodion_Command_Interface_Guide.pdf index 3297d6f..8d333ac 100644 Binary files a/docs/command_interface/Trafodion_Command_Interface_Guide.pdf and b/docs/command_interface/Trafodion_Command_Interface_Guide.pdf differ http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/command_interface/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/dependencies.html b/docs/command_interface/dependencies.html index 66c2cf6..8775450 100644 --- a/docs/command_interface/dependencies.html +++ b/docs/command_interface/dependencies.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Command Interface Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/command_interface/integration.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/integration.html b/docs/command_interface/integration.html index dc38aac..758fc02 100644 --- a/docs/command_interface/integration.html +++ b/docs/command_interface/integration.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Command Interface Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/command_interface/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/issue-tracking.html b/docs/command_interface/issue-tracking.html index 8d2a778..8873e69 100644 --- a/docs/command_interface/issue-tracking.html +++ b/docs/command_interface/issue-tracking.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Command Interface Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/command_interface/license.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/license.html b/docs/command_interface/license.html index ff7955d..d8630ed 100644 --- a/docs/command_interface/license.html +++ b/docs/command_interface/license.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Command Interface Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/command_interface/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/mail-lists.html b/docs/command_interface/mail-lists.html index 5d6ed6b..ff53b99 100644 --- a/docs/command_interface/mail-lists.html +++ b/docs/command_interface/mail-lists.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Command Interface Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/command_interface/project-info.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/project-info.html b/docs/command_interface/project-info.html index 8b6b68d..3cc0cf6 100644 --- a/docs/command_interface/project-info.html +++ b/docs/command_interface/project-info.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Command Interface Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/command_interface/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/project-summary.html b/docs/command_interface/project-summary.html index 7bc5e67..e400e87 100644 --- a/docs/command_interface/project-summary.html +++ b/docs/command_interface/project-summary.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Command Interface Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/command_interface/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/source-repository.html b/docs/command_interface/source-repository.html index 84c7557..4292162 100644 --- a/docs/command_interface/source-repository.html +++ b/docs/command_interface/source-repository.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Command Interface Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/command_interface/team-list.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/team-list.html b/docs/command_interface/team-list.html index 69f863f..a2db310 100644 --- a/docs/command_interface/team-list.html +++ b/docs/command_interface/team-list.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion Command Interface Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/cqd_reference/Trafodion_CQD_Reference_Guide.pdf ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/Trafodion_CQD_Reference_Guide.pdf b/docs/cqd_reference/Trafodion_CQD_Reference_Guide.pdf index 031857d..80dd304 100644 Binary files a/docs/cqd_reference/Trafodion_CQD_Reference_Guide.pdf and b/docs/cqd_reference/Trafodion_CQD_Reference_Guide.pdf differ http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/cqd_reference/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/dependencies.html b/docs/cqd_reference/dependencies.html index 8cbe89f..66f8f67 100644 --- a/docs/cqd_reference/dependencies.html +++ b/docs/cqd_reference/dependencies.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion CQD Reference Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/cqd_reference/integration.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/integration.html b/docs/cqd_reference/integration.html index 999ac75..b2d264e 100644 --- a/docs/cqd_reference/integration.html +++ b/docs/cqd_reference/integration.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion CQD Reference Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/cqd_reference/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/issue-tracking.html b/docs/cqd_reference/issue-tracking.html index 552dd7b..78d1401 100644 --- a/docs/cqd_reference/issue-tracking.html +++ b/docs/cqd_reference/issue-tracking.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion CQD Reference Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/cqd_reference/license.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/license.html b/docs/cqd_reference/license.html index 7411705..77339a1 100644 --- a/docs/cqd_reference/license.html +++ b/docs/cqd_reference/license.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion CQD Reference Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/cqd_reference/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/mail-lists.html b/docs/cqd_reference/mail-lists.html index 596cf81..0b3dd30 100644 --- a/docs/cqd_reference/mail-lists.html +++ b/docs/cqd_reference/mail-lists.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion CQD Reference Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/cqd_reference/project-info.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/project-info.html b/docs/cqd_reference/project-info.html index 038721f..02f3b17 100644 --- a/docs/cqd_reference/project-info.html +++ b/docs/cqd_reference/project-info.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion CQD Reference Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/cqd_reference/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/project-summary.html b/docs/cqd_reference/project-summary.html index 9659833..1bf25e1 100644 --- a/docs/cqd_reference/project-summary.html +++ b/docs/cqd_reference/project-summary.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion CQD Reference Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/cqd_reference/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/source-repository.html b/docs/cqd_reference/source-repository.html index f474c53..fdfaafd 100644 --- a/docs/cqd_reference/source-repository.html +++ b/docs/cqd_reference/source-repository.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion CQD Reference Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/cqd_reference/team-list.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/team-list.html b/docs/cqd_reference/team-list.html index 172be65..f3fc6e9 100644 --- a/docs/cqd_reference/team-list.html +++ b/docs/cqd_reference/team-list.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,7 @@ @import url("./css/site.css"); - + @@ -27,7 +27,7 @@
    - Last Published: 2018-06-20 + Last Published: 2018-07-02  | Version: 2.3.0
    Trafodion CQD Reference Guide http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/allclasses-frame.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/allclasses-frame.html b/docs/dcs_reference/apidocs/allclasses-frame.html index 812afe9..ed6f1bf 100644 --- a/docs/dcs_reference/apidocs/allclasses-frame.html +++ b/docs/dcs_reference/apidocs/allclasses-frame.html @@ -2,10 +2,10 @@ - + 所有类 (Trafodion Database Connectivity Services 2.3.0 API) - + http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/allclasses-noframe.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/allclasses-noframe.html b/docs/dcs_reference/apidocs/allclasses-noframe.html index 6df184c..5fd9d7c 100644 --- a/docs/dcs_reference/apidocs/allclasses-noframe.html +++ b/docs/dcs_reference/apidocs/allclasses-noframe.html @@ -2,10 +2,10 @@ - + 所有类 (Trafodion Database Connectivity Services 2.3.0 API) - + http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/constant-values.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/constant-values.html b/docs/dcs_reference/apidocs/constant-values.html index 3e6c233..eff22e3 100644 --- a/docs/dcs_reference/apidocs/constant-values.html +++ b/docs/dcs_reference/apidocs/constant-values.html @@ -2,10 +2,10 @@ - + 常量字段值 (Trafodion Database Connectivity Services 2.3.0 API) - + http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/deprecated-list.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/deprecated-list.html b/docs/dcs_reference/apidocs/deprecated-list.html index b55423d..ad7a0b7 100644 --- a/docs/dcs_reference/apidocs/deprecated-list.html +++ b/docs/dcs_reference/apidocs/deprecated-list.html @@ -2,10 +2,10 @@ - + 已过时的列表 (Trafodion Database Connectivity Services 2.3.0 API) - + http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/help-doc.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/help-doc.html b/docs/dcs_reference/apidocs/help-doc.html index 01d5a1b..03523f4 100644 --- a/docs/dcs_reference/apidocs/help-doc.html +++ b/docs/dcs_reference/apidocs/help-doc.html @@ -2,10 +2,10 @@ - + API 帮助 (Trafodion Database Connectivity Services 2.3.0 API) - + http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/index-all.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/index-all.html b/docs/dcs_reference/apidocs/index-all.html index 5489714..e612f1e 100644 --- a/docs/dcs_reference/apidocs/index-all.html +++ b/docs/dcs_reference/apidocs/index-all.html @@ -2,10 +2,10 @@ - + 索引 (Trafodion Database Connectivity Services 2.3.0 API) - + http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/index.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/index.html b/docs/dcs_reference/apidocs/index.html index dde076e..300c2dc 100644 --- a/docs/dcs_reference/apidocs/index.html +++ b/docs/dcs_reference/apidocs/index.html @@ -2,7 +2,7 @@ - + Trafodion Database Connectivity Services 2.3.0 API