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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>
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.</p> <pre class="CodeRay highlight"><code data-lang="text">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</code></pre> + | PRIVILEGES FOR {USER database-username | ROLE role-name} + | PRIVILEGES ON SEQUENCE sequence-name + | PRIVILEGES ON TABLE table-name + | PRIVILEGES ON VIEW view-name</code></pre> </div> </div> <div class="sect3"> @@ -11877,6 +11893,12 @@ and the schema is seabase.</p> </div> </li> <li> +<p><code>TABLES [IN VIEW view-name]</code></p> +<div class="paragraph"> +<p>returns tables that referenced by the view <em>view-name</em>.</p> +</div> +</li> +<li> <p><code>USERS</code></p> <div class="paragraph"> <p>displays a list of all the registered database users.</p> @@ -11908,9 +11930,24 @@ and the schema is seabase.</p> </div> </li> <li> +<p><code>VIEWS [IN VIEW <em>view-name</em>]</code></p> +<div class="paragraph"> +<p>returns views that referenced by the view <em>view-name</em>.</p> +</div> +</li> +<li> +<p><code>VIEWS [ON VIEW <em>view-name</em>]</code></p> +<div class="paragraph"> +<p>returns views that reference the view <em>view-name</em>.</p> +</div> +</li> +<li> <p><code>VIEWS ON TABLE <em>[[catalog-name.]schema-name.]table-name</em></code></p> <div class="paragraph"> -<p>displays the names of all the views that were created for the specified table. If you do not qualify the table name with +<p>returns views that reference the table <em>table-name</em>.</p> +</div> +<div class="paragraph"> +<p>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 <em>catalog-name</em>, you can specify only trafodion.</p> </div> @@ -12038,6 +12075,118 @@ TRAFODION.SEABASE:</p> </div> </li> <li> +<p>This example makes comparisons among <code>GET VIEWS [IN VIEW <em>view-name</em>]</code>, <code>GET VIEWS [ON VIEW <em>view-name</em>]</code>, <code>GET VIEWS [ON TABLE <em>table-name</em>]</code> +and <code>GET TABLES [IN VIEW <em>view-name</em>]</code>.</p> +<div class="paragraph"> +<p>Creates the table <em>t1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>CREATE TABLE t1 (c1 int); + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>Creates the view <em>v1</em> based on the table <em>t1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>CREATE VIEW v1 AS SELECT * FROM t1; + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>Creates the view <em>v2</em> based on the view <em>v1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>CREATE VIEW v2 AS SELECT * FROM v1; + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns nothing as no views are referenced by <em>v1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET VIEWS IN VIEW v1; + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns <em>v1</em> as <em>v1</em> is referenced by <em>v2</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET VIEWS IN VIEW v2; + +TRAFODION.SEABASE.V1 + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns <em>v2</em> as <em>v2</em> references <em>v1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET VIEWS ON VIEW v1; + +TRAFODION.SEABASE.V2 + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns nothing as no views reference <em>v2</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET VIEWS ON VIEW v2; + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statements returns <em>v1</em> as <em>v1</em> references <em>t1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET VIEWS ON TABLE t1; + +TRAFODION.SEABASE.V1 + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns <em>t1</em> as <em>t1</em> is referenced by <em>v1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET TABLES IN VIEW v1; + +TRAFODION.SEABASE.T1 + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns nothing as no tables are referenced by <em>v2</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET TABLES IN VIEW v2; + +--- SQL operation complete.</code></pre> +</div> +</div> +</li> +<li> <p>This GET statement displays the names of the libraries in the catalog and schema of the current session, which happens to be TRAFODION.SEABASE:</p> <div class="listingblock"> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a> 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 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> @@ -10,7 +10,7 @@ @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> - <meta name="Date-Revision-yyyymmdd" content="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a> 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 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:02 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:36:01 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>ææç±» (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> 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 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:02 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:36:01 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>ææç±» (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> 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 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:02 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:36:01 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>常éåæ®µå¼ (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> 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 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:02 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:36:01 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>å·²è¿æ¶çå表 (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> 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 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:02 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:36:01 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>API å¸®å© (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> 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 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:02 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:36:01 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>ç´¢å¼ (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style"> </head> <body> 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 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc on Wed Jun 20 11:06:02 CST 2018 --> +<!-- Generated by javadoc on Mon Jul 02 17:36:01 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Trafodion Database Connectivity Services 2.3.0 API</title> <script type="text/javascript"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html index c9fba1f..9ea2cf3 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:05:59 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:35:57 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Constants (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/VersionAnnotation.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/VersionAnnotation.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/VersionAnnotation.html index 4b3fe10..73e69e5 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/VersionAnnotation.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/VersionAnnotation.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:05:59 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:35:57 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>VersionAnnotation (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/Constants.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/Constants.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/Constants.html index 5998786..218845b 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/Constants.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/Constants.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:02 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:36:01 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>ç±» org.trafodion.dcs.Constantsçä½¿ç¨ (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/VersionAnnotation.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/VersionAnnotation.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/VersionAnnotation.html index 7fe1db6..738a30c 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/VersionAnnotation.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/class-use/VersionAnnotation.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:02 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:36:01 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>ç±» org.trafodion.dcs.VersionAnnotationçä½¿ç¨ (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/http/FilterContainer.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/FilterContainer.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/FilterContainer.html index f7a0ebd..6a99b4d 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/FilterContainer.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/FilterContainer.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:05:59 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:35:57 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>FilterContainer (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HtmlQuoting.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HtmlQuoting.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HtmlQuoting.html index 2fa9db1..9864233 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HtmlQuoting.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HtmlQuoting.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:05:59 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:35:57 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HtmlQuoting (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.RequestChecker.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.RequestChecker.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.RequestChecker.html index 8d79f2f..31f569c 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.RequestChecker.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.RequestChecker.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:00 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:35:58 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HttpServer.DummyServletFilter.RequestChecker (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.html index e087f00..2be3461 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.DummyServletFilter.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:05:59 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:35:58 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HttpServer.DummyServletFilter (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.RequestQuoter.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.RequestQuoter.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.RequestQuoter.html index b41744a..bed9248 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.RequestQuoter.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.RequestQuoter.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:00 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:35:58 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HttpServer.QuotingInputFilter.RequestQuoter (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.html index c8afe91..12c1486 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.QuotingInputFilter.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:00 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:35:58 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HttpServer.QuotingInputFilter (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.StackServlet.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.StackServlet.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.StackServlet.html index d75e2f3..c4124cc 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.StackServlet.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.StackServlet.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:06:00 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:35:58 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HttpServer.StackServlet (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html index b54f34b..b83aba1 100644 --- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html +++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="zh"> <head> -<!-- Generated by javadoc (version 1.7.0_80) on Wed Jun 20 11:05:59 CST 2018 --> +<!-- Generated by javadoc (version 1.7.0_80) on Mon Jul 02 17:35:58 CST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>HttpServer (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2018-06-20"> +<meta name="date" content="2018-07-02"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body>
