http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 9e00224..2f6ccb5 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 51a5534..ed55fca 100644 --- a/docs/2.3.0/sql_reference/index.html +++ b/docs/2.3.0/sql_reference/index.html @@ -4078,6 +4078,8 @@ data-type is: [upshift] [[not] casespecific] | varchar (length) [character set char-set-name] [upshift] [[not] casespecific] + | varchar2 (length) [character set char-set-name] + [upshift] [[not] casespecific] | numeric [(precision [,scale])] [signed|unsigned] | nchar [(length) [character set char-set-name] [upshift] [[not] casespecific] @@ -6385,6 +6387,7 @@ once with different underlying SPJ methods.</p> <td class="tableblock halign-left valign-top"><p class="tableblock">char[acter]<br> char[acter] varying<br> varchar<br> +varchar2<br> pic[ture] x<sup>1</sup><br> nchar<br> nchar varying<br> @@ -7605,6 +7608,8 @@ column-definition is: [upshift] [[not]casespecific] | varchar (length) [character set char-set-name] [upshift] [[not]casespecific] + | varchar2 (length) [character set char-set-name] + [upshift] [[not]casespecific] | nchar (length) [characters] [upshift] [[not]casespecific] | nchar varying(length [characters]) [upshift] [[not] casespecific] | numeric [(precision [,scale])] [signed|unsigned] @@ -8810,6 +8815,31 @@ DIVISION BY (SUBSTR(chcol, 1, 5));</code></pre> </div> </div> </li> +<li> +<p>This example creates a table using varchar2 data type which is same as varchar.</p> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">CREATE TABLE testvarchar2(c1 varchar(32), c2 varchar2(32) upshift not casespecific); + +--- SQL operation complete. + + +SHOWDDL testvarchar2; + +CREATE TABLE TRAFODION.SEABASE.TESTVARCHAR2 + ( + C1 VARCHAR(32) CHARACTER SET ISO88591 COLLATE + DEFAULT DEFAULT NULL NOT SERIALIZED + , C2 VARCHAR(32) CHARACTER SET ISO88591 COLLATE + DEFAULT UPSHIFT DEFAULT NULL NOT SERIALIZED + ) +ATTRIBUTES ALIGNED FORMAT +; + +--- SQL operation complete.</code></pre> +</div> +</div> +</li> </ul> </div> <div style="page-break-after: always;"></div> @@ -19931,7 +19961,7 @@ more information, see <a href="#cast_expression">CAST Expression</a>.</p> </thead> <tbody> <tr> -<td class="tableblock halign-left valign-top" rowspan="7"><p class="tableblock">Character String Data Type</p></td> +<td class="tableblock halign-left valign-top" rowspan="8"><p class="tableblock">Character String Data Type</p></td> <td class="tableblock halign-left valign-top" rowspan="3"><p class="tableblock">Fixed-length character</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">CHAR[ACTER]</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Fixed-length character data</p></td> @@ -19948,12 +19978,17 @@ more information, see <a href="#cast_expression">CAST Expression</a>.</p> <td class="tableblock halign-left valign-top"><p class="tableblock">1 to 200000 bytes<sup>3</sup> <sup>7</sup> <sup>9</sup></p></td> </tr> <tr> -<td class="tableblock halign-left valign-top" rowspan="4"><p class="tableblock">Variable-length character</p></td> +<td class="tableblock halign-left valign-top" rowspan="5"><p class="tableblock">Variable-length character</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">VARCHAR</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Variable-length ASCII character string</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">1 to 200000 characters<sup>4</sup> <sup>8</sup></p></td> </tr> <tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">VARCHAR2</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">Variable-length ASCII character string</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">1 to 200000 characters<sup>4</sup> <sup>8</sup></p></td> +</tr> +<tr> <td class="tableblock halign-left valign-top"><p class="tableblock">CHAR[ACTER] VARYING</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">Variable-length ASCII character string</p></td> <td class="tableblock halign-left valign-top"><p class="tableblock">1 to 200000 characters<sup>4</sup> <sup>8</sup></p></td> @@ -20425,6 +20460,7 @@ numeric, datetime, or interval data.</p> <pre class="CodeRay highlight"><code data-lang="text">CHAR[ACTER] [(length [unit])] [char-set] [UPSHIFT] [[NOT]CASESPECIFIC] | CHAR[ACTER] VARYING(length [unit]) [char-set] [UPSHIFT] [[NOT]CASESPECIFIC] | VARCHAR(length [unit]) [CHARACTERS] [char-set] [UPSHIFT] [[NOT]CASESPECIFIC] +| VARCHAR2(length [unit]) [CHARACTERS] [char-set] [UPSHIFT] [[NOT]CASESPECIFIC] | NCHAR [(length)] [UPSHIFT] [[NOT]CASESPECIFIC] | NCHAR VARYING (length) [UPSHIFT] [[NOT]CASESPECIFIC] | NATIONAL CHAR[ACTER] [(length)] [UPSHIFT] [[NOT]CASESPECIFIC] @@ -20432,8 +20468,10 @@ numeric, datetime, or interval data.</p> </div> </div> <div class="paragraph"> -<p>CHAR, NCHAR, and NATIONAL CHAR are fixed-length character types. CHAR -VARYING, VARCHAR, NCHAR VARYING and NATIONAL CHAR VARYING are +<p>CHAR, NCHAR, and NATIONAL CHAR are fixed-length character types.</p> +</div> +<div class="paragraph"> +<p>CHAR VARYING, VARCHAR, VARCHAR2, NCHAR VARYING and NATIONAL CHAR VARYING are varying-length character types.</p> </div> </li> @@ -20514,6 +20552,30 @@ equivalent to data type CHAR[ACTER] VARYING.</p> </div> </li> <li> +<p><code>VARCHAR2 (<em>length</em> [<em>unit</em>]) [<em>char-set</em>] [UPSHIFT] [[NOT]CASESPECIFIC]</code></p> +<div class="paragraph"> +<p>specifies a column with varying-length character data. VARCHAR2 is +equivalent to data type CHAR[ACTER] VARYING.</p> +</div> +</li> +</ul> +</div> +<div class="admonitionblock note"> +<table> +<tr> +<td class="icon"> +<i class="fa icon-note" title="Note"></i> +</td> +<td class="content"> +Trafodion supports VARCHAR2 as a synonym for VARCHAR. This improves portability from some popular databases. +VARCHAR2 in Trafodion, however, has the standard semantics of VARCHAR. That is, an empty string is a non-null value. +</td> +</tr> +</table> +</div> +<div class="ulist"> +<ul> +<li> <p><code>NCHAR [(<em>length</em>)] [UPSHIFT] [[NOT]CASESPECIFIC], NATIONAL CHAR[ACTER] [(<em>length</em>)] [UPSHIFT] [[NOT]CASESPECIFIC]</code></p> <div class="paragraph"> <p>specifies a column with data in the predefined national character set (UCS2).</p> @@ -44919,7 +44981,7 @@ or 256 bytes of UTF8 text, whichever is less.</p></td> <div id="footer"> <div id="footer-text"> Version 2.3.0<br> -Last updated 2016-11-03 22:36:05 UTC +Last updated 2017-05-29 17:37:12 UTC </div> </div> <script> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 0241dad..9ef002f 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 491e138..4b4f32b 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 eb6e66d..7842d0b 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 735f2b8..1c29e59 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 881d16e..d61aace 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 64e6d0c..68b4162 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 0eb79f3..a359ce3 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 81459c0..9ec7a0d 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 75ccf3d..5ea9051 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/incubator-trafodion-site/blob/b2961f6f/docs/client_install/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/client_install/dependencies.html b/docs/client_install/dependencies.html index f288362..a053700 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/client_install/index.html ---------------------------------------------------------------------- diff --git a/docs/client_install/index.html b/docs/client_install/index.html index 8232c97..9ce92f9 100644 --- a/docs/client_install/index.html +++ b/docs/client_install/index.html @@ -4940,7 +4940,7 @@ check your PATH variable settings again.</p> <div id="footer"> <div id="footer-text"> Version 2.3.0<br> -Last updated 2016-11-03 22:36:05 UTC +Last updated 2017-05-29 17:37:12 UTC </div> </div> <script> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/docs/client_install/integration.html ---------------------------------------------------------------------- diff --git a/docs/client_install/integration.html b/docs/client_install/integration.html index 4d9cf7b..c853434 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/client_install/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/client_install/issue-tracking.html b/docs/client_install/issue-tracking.html index 648b361..a8854f2 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/client_install/license.html ---------------------------------------------------------------------- diff --git a/docs/client_install/license.html b/docs/client_install/license.html index f45e6fb..d9c22ed 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/client_install/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/client_install/mail-lists.html b/docs/client_install/mail-lists.html index ea2c7b6..86e9252 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/client_install/project-info.html ---------------------------------------------------------------------- diff --git a/docs/client_install/project-info.html b/docs/client_install/project-info.html index 4a0371e..9c59f8a 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/client_install/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/client_install/project-summary.html b/docs/client_install/project-summary.html index 78b186b..33c96f4 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/client_install/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/client_install/source-repository.html b/docs/client_install/source-repository.html index 996583e..199b2d3 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/client_install/team-list.html ---------------------------------------------------------------------- diff --git a/docs/client_install/team-list.html b/docs/client_install/team-list.html index eaf0ef7..6c7b211 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 40f363d..e566c69 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/incubator-trafodion-site/blob/b2961f6f/docs/command_interface/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/dependencies.html b/docs/command_interface/dependencies.html index 7e854f3..1d72946 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/command_interface/index.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/index.html b/docs/command_interface/index.html index 021be0c..8117df6 100644 --- a/docs/command_interface/index.html +++ b/docs/command_interface/index.html @@ -10859,7 +10859,7 @@ Trafodion Command Interface : TrafCI_Build_40646</code></pre> <div id="footer"> <div id="footer-text"> Version 2.3.0<br> -Last updated 2016-07-18 16:17:02 UTC +Last updated 2016-06-10 02:21:44 UTC </div> </div> <script> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/docs/command_interface/integration.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/integration.html b/docs/command_interface/integration.html index 6e37c4d..369daf5 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/command_interface/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/issue-tracking.html b/docs/command_interface/issue-tracking.html index ed98609..b4834b9 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/command_interface/license.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/license.html b/docs/command_interface/license.html index b2cfee5..dc31114 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/command_interface/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/mail-lists.html b/docs/command_interface/mail-lists.html index ee1672c..b894d6a 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/command_interface/project-info.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/project-info.html b/docs/command_interface/project-info.html index 175604f..67cfcae 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/command_interface/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/project-summary.html b/docs/command_interface/project-summary.html index dc6cc64..861b8b5 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/command_interface/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/source-repository.html b/docs/command_interface/source-repository.html index c908921..e44012b 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/command_interface/team-list.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/team-list.html b/docs/command_interface/team-list.html index 6310433..a6f7dcd 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 15eee66..a2ac79f 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/incubator-trafodion-site/blob/b2961f6f/docs/cqd_reference/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/dependencies.html b/docs/cqd_reference/dependencies.html index 60625ce..900c884 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/cqd_reference/index.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/index.html b/docs/cqd_reference/index.html index deefd27..f8fdd6f 100644 --- a/docs/cqd_reference/index.html +++ b/docs/cqd_reference/index.html @@ -4988,7 +4988,7 @@ Default: <strong>'0'</strong>.</p></td> <div id="footer"> <div id="footer-text"> Version 2.3.0<br> -Last updated 2016-07-18 16:17:02 UTC +Last updated 2016-06-10 02:21:44 UTC </div> </div> <script> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/docs/cqd_reference/integration.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/integration.html b/docs/cqd_reference/integration.html index b91c480..2ab875d 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/cqd_reference/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/issue-tracking.html b/docs/cqd_reference/issue-tracking.html index a0b08d1..99bad76 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/cqd_reference/license.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/license.html b/docs/cqd_reference/license.html index 95b388a..f2ef355 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/cqd_reference/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/mail-lists.html b/docs/cqd_reference/mail-lists.html index b0b0488..a7984b3 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/cqd_reference/project-info.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/project-info.html b/docs/cqd_reference/project-info.html index a94fe0d..004b334 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/cqd_reference/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/project-summary.html b/docs/cqd_reference/project-summary.html index af2f4ec..56d2384 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/cqd_reference/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/source-repository.html b/docs/cqd_reference/source-repository.html index ef2194d..39792e1 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/docs/cqd_reference/team-list.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/team-list.html b/docs/cqd_reference/team-list.html index 9158bba..7be1b62 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 at Dec 3, 2017 --> +<!-- Generated by Apache Maven Doxia at Dec 12, 2017 --> <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="20171203" /> + <meta name="Date-Revision-yyyymmdd" content="20171212" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2017-12-03</span> + <span id="publishDate">Last Published: 2017-12-12</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/incubator-trafodion-site/blob/b2961f6f/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 92161a2..dc4c822 100644 --- a/docs/dcs_reference/apidocs/allclasses-frame.html +++ b/docs/dcs_reference/apidocs/allclasses-frame.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:17 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:17 UTC 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>All Classes (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 cf019f7..f045964 100644 --- a/docs/dcs_reference/apidocs/allclasses-noframe.html +++ b/docs/dcs_reference/apidocs/allclasses-noframe.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:17 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:17 UTC 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>All Classes (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 628fbcc..0269401 100644 --- a/docs/dcs_reference/apidocs/constant-values.html +++ b/docs/dcs_reference/apidocs/constant-values.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:17 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:17 UTC 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Constant Field Values (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 5d1600d..8a1764e 100644 --- a/docs/dcs_reference/apidocs/deprecated-list.html +++ b/docs/dcs_reference/apidocs/deprecated-list.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:17 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:17 UTC 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Deprecated List (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 fa4daf69..1f28e08 100644 --- a/docs/dcs_reference/apidocs/help-doc.html +++ b/docs/dcs_reference/apidocs/help-doc.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:17 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:17 UTC 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>API Help (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 c837844..748e5b7 100644 --- a/docs/dcs_reference/apidocs/index-all.html +++ b/docs/dcs_reference/apidocs/index-all.html @@ -2,10 +2,10 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:17 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:17 UTC 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Index (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/docs/dcs_reference/apidocs/index.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/index.html b/docs/dcs_reference/apidocs/index.html index 7f6f9de..c312f12 100644 --- a/docs/dcs_reference/apidocs/index.html +++ b/docs/dcs_reference/apidocs/index.html @@ -2,7 +2,7 @@ <!-- NewPage --> <html lang="en"> <head> -<!-- Generated by javadoc on Sun Dec 03 22:51:17 UTC 2017 --> +<!-- Generated by javadoc on Tue Dec 12 17:58:17 UTC 2017 --> <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/incubator-trafodion-site/blob/b2961f6f/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 d8b09b0..3610b55 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="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:15 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:16 UTC 2017 --> <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="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 db9a879..c662932 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="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:15 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:16 UTC 2017 --> <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="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 b058b96..6dc5ce8 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="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:17 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:17 UTC 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.trafodion.dcs.Constants (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 6f75be4..2950ca7 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="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:17 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:17 UTC 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.trafodion.dcs.VersionAnnotation (Trafodion Database Connectivity Services 2.3.0 API)</title> -<meta name="date" content="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 cb99c61..db886a2 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="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:16 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:16 UTC 2017 --> <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="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 4881a37..5feff56 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="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:16 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:16 UTC 2017 --> <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="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 831ee0e..5b82a84 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="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:16 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:16 UTC 2017 --> <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="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 09046cc..ae8b364 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="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:16 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:16 UTC 2017 --> <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="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 ed61393..8efe832 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="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:16 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:16 UTC 2017 --> <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="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 d5310f2..9596dfb 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="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:16 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:16 UTC 2017 --> <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="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/b2961f6f/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 e41b6ba..beb5077 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="en"> <head> -<!-- Generated by javadoc (version 1.7.0_91) on Sun Dec 03 22:51:16 UTC 2017 --> +<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:16 UTC 2017 --> <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="2017-12-03"> +<meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body>
