http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/758b046e/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 f3d010a..05d2261 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 4e28037..a31a1bf 100644 --- a/docs/2.3.0/sql_reference/index.html +++ b/docs/2.3.0/sql_reference/index.html @@ -9040,6 +9040,346 @@ CREATE TABLE t2 (c1 int, c2 char (50) UPSHIFT NOT NULL) AS SELECT * FROM t1;</co </div> <div style="page-break-after: always;"></div> </div> +<div class="sect4"> +<h5 id="create_table_examples_create_external_table">Examples of CREATE EXTERNAL TABLE</h5> +<div class="paragraph"> +<p>This example compares the execution time of using external table and not using external table when reading hive tables.</p> +</div> +<div class="paragraph"> +<p>The former takes less time than the latter, since the trafodion external table supplies upper bounds for varchar lengths, which may lead to better plans and/or run-time behavior.</p> +</div> +<div class="admonitionblock tip"> +<table> +<tr> +<td class="icon"> +<i class="fa icon-tip" title="Tip"></i> +</td> +<td class="content"> +Either running UPDATE STATISTICS or using a trafodion external table may improve performance. To get full performance benefit, you must run UPDATE STATISTICS and use the trafodion external table. +</td> +</tr> +</table> +</div> +<div class="paragraph"> +<p>This is the definition of the <strong>hive table</strong> <em>test_mix</em> which has a trafodion external table, the size is 137.6G.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>SHOWDDL test_mix; + +CREATE EXTERNAL TABLE test_mix( + mix_id int not null not droppable primary key, + mix_age int, + mix_name string, + mix_timestamp01 string, + mix_timestamp02 string, + mix_other01 string, + mix_other02 string, + mix_other03 string, + mix_other04 string, + mix_other05 string, + mix_other06 string, + mix_other07 string, + mix_other08 string, + mix_other09 string, + mix_other10 string, + mix_other11 string, + mix_other12 string, + mix_other13 string, + mix_other14 string, + mix_other15 string + ) +row format delimited fields terminated by '|' + location '/user/trafodion/data/ExternalTable_data'; +-- 01-06 short 06-11medium 12-15 long</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This is the definition of the <strong>trafodion external table</strong> <em>test_mix</em>, it has the same structure and size as the hive table <em>test_mix</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>SHOWDDL text_mix; + +CREATE EXTERNAL TABLE test_mix( + mix_id int, + mix_age int, + mix_name varchar(20), + mix_timestamp01 timestamp, + mix_timestamp02 varchar(20), + mix_other01 varchar(12), + mix_other02 varchar(12), + mix_other03 varchar(12), + mix_other04 varchar(12), + mix_other05 varchar(12), + mix_other06 varchar(12), + mix_other07 varchar(64), + mix_other08 varchar(64), + mix_other09 varchar(64), + mix_other10 varchar(64), + mix_other11 varchar(128), + mix_other12 varchar(128), + mix_other13 varchar(128), + mix_other14 varchar(1024), + mix_other15 varchar(1024) + )for hive.hive.test_mix; +-- 01-06 short 07-11medium 12-15 long</code></pre> +</div> +</div> +<div class="ulist"> +<ul> +<li> +<p>When executing the following query:</p> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SELECT [LAST 1] * FROM hive.hive.test_mix WHERE mix_other02 = 'Ot';</code></pre> +</div> +</div> +<div class="paragraph"> +<p>it takes approximately <strong>6 minutes</strong> (average value) to get the result using the trafodion external table.</p> +</div> +<table class="tableblock frame-all grid-all spread"> +<colgroup> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +</colgroup> +<thead> +<tr> +<th class="tableblock halign-left valign-top"></th> +<th class="tableblock halign-left valign-top">First Result</th> +<th class="tableblock halign-left valign-top">Second Result</th> +<th class="tableblock halign-left valign-top">Third Result</th> +<th class="tableblock halign-left valign-top">Average Value</th> +</tr> +</thead> +<tbody> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Start Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 18:40:31.655159</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 09:37:50.801345</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 09:45:05.921706</p></td> +<td class="tableblock halign-left valign-top"></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">End Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 18:49:08.879780</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 09:43:16.695492</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 09:48:58.251764</p></td> +<td class="tableblock halign-left valign-top"></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Elapsed Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:08:37.224621</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:05:25.894147</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:03:52.330058</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">00:06:12.23</p></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Compile Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:00:03.497624</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:00:11.595054</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:00:00.551781</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">00:00:04.8</p></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Execution Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:08:33.715742</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:05:14.295840</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:03:51.708673</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>00:06:12</strong></p></td> +</tr> +</tbody> +</table> +<div class="paragraph"> +<p>while it takes approximately <strong>14 minutes</strong> (average value) to get the result without using the trafodion external table.</p> +</div> +<table class="tableblock frame-all grid-all spread"> +<colgroup> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +</colgroup> +<thead> +<tr> +<th class="tableblock halign-left valign-top"></th> +<th class="tableblock halign-left valign-top">First Result</th> +<th class="tableblock halign-left valign-top">Second Result</th> +<th class="tableblock halign-left valign-top">Third Result</th> +<th class="tableblock halign-left valign-top">Average Value</th> +</tr> +</thead> +<tbody> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Start Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 13:33:46.722646</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 14:39:30.323730</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 14:54:58.177258</p></td> +<td class="tableblock halign-left valign-top"></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">End Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 13:48:35.028916</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 14:53:53.887911</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 15:09:11.517646</p></td> +<td class="tableblock halign-left valign-top"></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Elapsed Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:14:48.306270</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:14:23.564181</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:14:13.340388</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">00:14:28.40</p></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Compile Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:00:00.773770</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:00:00.388777</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:00:14.856643</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">00:00:04</p></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Execution Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:14:47.530017</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:14:23.146420</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/07 00:13:58.463850</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>00:13:58</strong></p></td> +</tr> +</tbody> +</table> +</li> +<li> +<p>When executing the following query:</p> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SELECT [LAST 1] mix_other02, substring(mix_other12 from 1 for 10) FROM hive.hive.test_mix WHERE substring(mix_other02 from 1 for 1) = 'O';</code></pre> +</div> +</div> +<div class="paragraph"> +<p>it takes approximately <strong>6 minutes</strong> (average value) to get the result using the trafodion external table.</p> +</div> +<table class="tableblock frame-all grid-all spread"> +<colgroup> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +</colgroup> +<thead> +<tr> +<th class="tableblock halign-left valign-top"></th> +<th class="tableblock halign-left valign-top">First Result</th> +<th class="tableblock halign-left valign-top">Second Result</th> +<th class="tableblock halign-left valign-top">Third Result</th> +<th class="tableblock halign-left valign-top">Average Value</th> +</tr> +</thead> +<tbody> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Start Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 14:07:59.353015</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 14:16:27.725035</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 14:41:01.454408</p></td> +<td class="tableblock halign-left valign-top"></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">End Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 14:15:05.979546</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 14:20:44.939776</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 14:46:58.238246</p></td> +<td class="tableblock halign-left valign-top"></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Elapsed Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:07:06.626531</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:04:17.214741</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:05:56.783838</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">00:05:59</p></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Compile Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:00:00.197789</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:00:00.296705</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:00:00.227511</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">00:00:00.23</p></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Execution Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:07:06.411065</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:04:16.873090</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:05:56.554411</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>00:05:59</strong></p></td> +</tr> +</tbody> +</table> +<div class="paragraph"> +<p>while it takes approximately 35 minutes (average value) to get the result without using the trafodion external table.</p> +</div> +<table class="tableblock frame-all grid-all spread"> +<colgroup> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +<col style="width: 20%;"> +</colgroup> +<thead> +<tr> +<th class="tableblock halign-left valign-top"></th> +<th class="tableblock halign-left valign-top">First Result</th> +<th class="tableblock halign-left valign-top">Second Result</th> +<th class="tableblock halign-left valign-top">Third Result</th> +<th class="tableblock halign-left valign-top">Average Value</th> +</tr> +</thead> +<tbody> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Start Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 11:01:12.676307</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 11:35:54.514479</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 13:15:07.006658</p></td> +<td class="tableblock halign-left valign-top"></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">End Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 11:35:16.264756</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 12:11:09.587147</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 13:49:23.740406</p></td> +<td class="tableblock halign-left valign-top"></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Elapsed Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:34:03.588449</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:35:15.072668</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:34:16.733748</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">34:44:00</p></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Compile Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:00:00.703053</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:00:00.280146</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:00:00.536929</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">00:00:00.5</p></td> +</tr> +<tr> +<td class="tableblock halign-left valign-top"><p class="tableblock">Execution Time</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:34:02.828529</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:35:14.743914</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock">2018/03/09 00:34:16.155336</p></td> +<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>34:44:00</strong></p></td> +</tr> +</tbody> +</table> +</li> +</ul> +</div> +<div style="page-break-after: always;"></div> +</div> </div> </div> <div class="sect2"> @@ -14055,7 +14395,7 @@ evaluation of query expressions, or joined tables.</p> query-specification is: [with-clause] -SELECT [ "[" ANY N "]" | "[" FIRST N "]" ] [ALL | DISTINCT] select-list +SELECT [ "[" ANY N "]" | "[" FIRST N "]" | "[" LAST N "]" ] [ALL | DISTINCT] select-list FROM table-ref [,table-ref]... [WHERE search-condition] [SAMPLE sampling-method] @@ -14219,14 +14559,14 @@ transpose-item-list is: </div> </li> <li> -<p><code>"[" ANY <em>N</em> "]" | "[" FIRST <em>N</em> "]"</code></p> +<p>`"[" ANY <em>N</em> "]" | "[" FIRST <em>N</em> "]" | "[" LAST <em>N</em> "]" `</p> <div class="paragraph"> <p>specifies that <em>N</em> rows are to be returned (assuming the table has at least <em>N</em> rows and that the qualification criteria specified in the WHERE clause, if any, would select at least <em>N</em> rows) and you do not care which <em>N</em> rows are chosen (out of the qualified rows) to actually be returned.</p> </div> <div class="paragraph"> -<p><em>You must enclose ANY N or FIRST N in square brackets ([]).</em> The quotation marks ("") around each square bracket in +<p>You must enclose <code>ANY <em>N</em></code>, <code>FIRST <em>N</em></code> or <code>LAST <em>N</em></code> in square brackets ([]). The quotation marks ("") around each square bracket in the syntax diagram indicate that the bracket is a required character that you must type as shown (for example, [ANY 10] or [FIRST 5]). Do not include quotation marks in ANY or FIRST clauses.</p> </div> @@ -14236,6 +14576,9 @@ result table of the SELECT statement. <em>N</em> is an unsigned numeric literal of rows in the table, all rows are returned. [ANY <em>N</em>] and [FIRST <em>N</em>] are disallowed in nested SELECT statements and on either side of a UNION operation.</p> </div> +<div class="paragraph"> +<p><code>[LAST <em>N</em>]</code> performs the entire query and calculates elapsed time. The <em>N</em> must be 0 or 1. <code>[LAST <em>0</em>]</code> does not return any rows. <code>[LAST <em>1</em>]</code> returns only the last qualified row.</p> +</div> </li> <li> <p><code>ALL | DISTINCT</code></p> @@ -15989,6 +16332,35 @@ SELECT a+1 FROM t GROUP BY 1+a;</code></pre> </div> </div> </li> +<li> +<p>Examples of using <code>[LAST <em>N</em>]</code> option:</p> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>SELECT [LAST 0] * FROM employee; + +--- 0 row(s) selected.</code></pre> +</div> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>SELECT [LAST 1] * FROM employee WHERE jobcode <> 100 AND salary = 30000; + +EMPNUM FIRST_NAME LAST_NAME DEPTNUM JOBCODE SALARY +------ --------------- -------------------- ------- ------- ---------- + 227 XAVIER SEDLEMEYER 3300 300 30000.00 + +--- 1 row(s) selected.</code></pre> +</div> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>SELECT [LAST 2] * FROM employee; + +*** ERROR[15002] Internal parser error: Number of rows must be 0 or 1 with LAST option. +. [2018-02-28 18:05:12]</code></pre> +</div> +</div> +</li> </ul> </div> <div style="page-break-after: always;"></div> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/758b046e/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 1512b44..f5c28da 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 4063299..4f3a706 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 b7e8c20..ccce9a4 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 c2c5cda..eafdeaf 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 810d6b9..03e7ca7 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 5ea17cf..86d005b 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 767d5b7..4633693 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 f2987ff..30ed386 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 49b1ec0..445b7b8 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/758b046e/docs/client_install/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/client_install/dependencies.html b/docs/client_install/dependencies.html index 866c88b..9bc334b 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/client_install/integration.html ---------------------------------------------------------------------- diff --git a/docs/client_install/integration.html b/docs/client_install/integration.html index 0234f4c..0e8cc1a 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/client_install/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/client_install/issue-tracking.html b/docs/client_install/issue-tracking.html index 5076fec..c31a87a 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/client_install/license.html ---------------------------------------------------------------------- diff --git a/docs/client_install/license.html b/docs/client_install/license.html index 8bc58d6..177626f 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/client_install/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/client_install/mail-lists.html b/docs/client_install/mail-lists.html index 29e2e6a..8170558 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/client_install/project-info.html ---------------------------------------------------------------------- diff --git a/docs/client_install/project-info.html b/docs/client_install/project-info.html index 46e3a21..7411882 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/client_install/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/client_install/project-summary.html b/docs/client_install/project-summary.html index da4af10..116057a 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/client_install/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/client_install/source-repository.html b/docs/client_install/source-repository.html index a1b7aec..cbcdac8 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/client_install/team-list.html ---------------------------------------------------------------------- diff --git a/docs/client_install/team-list.html b/docs/client_install/team-list.html index a4ad507..69a1982 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 56520f5..be56545 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/758b046e/docs/command_interface/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/dependencies.html b/docs/command_interface/dependencies.html index 68cd778..b98dc20 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/command_interface/integration.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/integration.html b/docs/command_interface/integration.html index e2874c6..8a9cbf8 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/command_interface/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/issue-tracking.html b/docs/command_interface/issue-tracking.html index e3246b9..006b528 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/command_interface/license.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/license.html b/docs/command_interface/license.html index 8576688..7b1222e 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/command_interface/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/mail-lists.html b/docs/command_interface/mail-lists.html index 69222c4..bda6125 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/command_interface/project-info.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/project-info.html b/docs/command_interface/project-info.html index edde29d..c9eff96 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/command_interface/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/project-summary.html b/docs/command_interface/project-summary.html index 5b90d91..14e0995 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/command_interface/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/source-repository.html b/docs/command_interface/source-repository.html index 342f91e..c2fd6e4 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/command_interface/team-list.html ---------------------------------------------------------------------- diff --git a/docs/command_interface/team-list.html b/docs/command_interface/team-list.html index d6b81f7..1864e22 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 64acab7..4039436 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/758b046e/docs/cqd_reference/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/dependencies.html b/docs/cqd_reference/dependencies.html index 382a855..241f403 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/cqd_reference/integration.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/integration.html b/docs/cqd_reference/integration.html index f46396d..386887d 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/cqd_reference/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/issue-tracking.html b/docs/cqd_reference/issue-tracking.html index b1eeaef..e39eac2 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/cqd_reference/license.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/license.html b/docs/cqd_reference/license.html index 707e495..0dc0fc1 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/cqd_reference/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/mail-lists.html b/docs/cqd_reference/mail-lists.html index f7dc0a6..76ca29c 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/cqd_reference/project-info.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/project-info.html b/docs/cqd_reference/project-info.html index 2fa8d11..9a482ed 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/cqd_reference/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/project-summary.html b/docs/cqd_reference/project-summary.html index 1565883..1341ad1 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/cqd_reference/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/source-repository.html b/docs/cqd_reference/source-repository.html index 6f2431a..313e655 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/docs/cqd_reference/team-list.html ---------------------------------------------------------------------- diff --git a/docs/cqd_reference/team-list.html b/docs/cqd_reference/team-list.html index 610dfaf..af31097 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 Mar 18, 2018 --> +<!-- Generated by Apache Maven Doxia at Mar 20, 2018 --> <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="20180318" /> + <meta name="Date-Revision-yyyymmdd" content="20180320" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-03-18</span> + <span id="publishDate">Last Published: 2018-03-20</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/758b046e/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 c70fce5..5e5460f 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 (1.7.0_161) on Sun Mar 18 20:57:40 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 2018 --> <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="2018-03-18"> +<meta name="date" content="2018-03-20"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/758b046e/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 a9a7136..bf0d7a1 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 (1.7.0_161) on Sun Mar 18 20:57:40 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 2018 --> <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="2018-03-18"> +<meta name="date" content="2018-03-20"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/758b046e/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 04cd154..feb61a3 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 (1.7.0_161) on Sun Mar 18 20:57:39 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:51 UTC 2018 --> <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="2018-03-18"> +<meta name="date" content="2018-03-20"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/758b046e/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 a978de1..4ba72ec 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 (1.7.0_161) on Sun Mar 18 20:57:40 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 2018 --> <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="2018-03-18"> +<meta name="date" content="2018-03-20"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/758b046e/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 46f4f62..e36ad98 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 (1.7.0_161) on Sun Mar 18 20:57:40 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 2018 --> <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="2018-03-18"> +<meta name="date" content="2018-03-20"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/758b046e/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 046c5f5..7b042b5 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 (1.7.0_161) on Sun Mar 18 20:57:40 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 2018 --> <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="2018-03-18"> +<meta name="date" content="2018-03-20"> <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style"> </head> <body> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/758b046e/docs/dcs_reference/apidocs/index.html ---------------------------------------------------------------------- diff --git a/docs/dcs_reference/apidocs/index.html b/docs/dcs_reference/apidocs/index.html index a1084fb..fb6b54e 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 (1.7.0_161) on Sun Mar 18 20:57:40 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 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/758b046e/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 77cc393..a6aec8e 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 (1.7.0_161) on Sun Mar 18 20:57:38 UTC 2018 --> +<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:49 UTC 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-03-18"> +<meta name="date" content="2018-03-20"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> </head> <body>
