You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by db...@apache.org on 2017/12/18 19:39:37 UTC

[11/22] incubator-trafodion-site git commit: Merge PRs 1339, 1346, 1352

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/e64b94eb/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 2f6ccb5..5f2f010 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 ed55fca..2fb2c9f 100644
--- a/docs/2.3.0/sql_reference/index.html
+++ b/docs/2.3.0/sql_reference/index.html
@@ -7673,7 +7673,7 @@ hbase-options-list is:
 <li>
 <p><code>VOLATILE</code></p>
 <div class="paragraph">
-<p>specifies a volatile table, which is a table limited to the session that creates the table. After the session ends, the</p>
+<p>specifies a volatile table, which is a table limited to the session that creates the table. After the session ends, the volatile table will be automatically dropped.</p>
 </div>
 </li>
 <li>
@@ -17977,13 +17977,14 @@ called an HFile.</p>
 <pre class="CodeRay highlight"><code data-lang="text">LOAD [WITH option[[,] option]...] INTO target-table SELECT ... FROM source-table
 
 option is:
-    TRUNCATE TABLE
-  | NO RECOVERY
+    CONTINUE ON ERROR
+  | LOG ERROR ROWS [TO error-location-name]
+  | STOP AFTER num ERROR ROWS
+  | TRUNCATE TABLE
   | NO POPULATE INDEXES
   | NO DUPLICATE CHECK
   | NO OUTPUT
-  | INDEX TABLE ONLY
-  | UPSERT USING LOAD</code></pre>
+  | INDEX TABLE ONLY</code></pre>
 </div>
 </div>
 <div class="sect3">
@@ -18019,30 +18020,68 @@ specify one or more of these options:</p>
 <div class="ulist">
 <ul>
 <li>
-<p><code>TRUNCATE TABLE</code></p>
+<p><code>CONTINUE ON ERROR</code></p>
 <div class="paragraph">
-<p>causes the Bulk Loader to truncate the target table before starting the
-load operation. By default, the Bulk Loader does not truncate the target
-table before loading data.</p>
+<p>LOAD statement will continue after errors encountered while scanning rows from source table.</p>
+</div>
+<div class="paragraph">
+<p>Errors during the load or sort phase will cause the LOAD statement to abort.</p>
+</div>
+<div class="paragraph">
+<p>Error rows will be logged by default in HDFS files in the directory <code>/user/trafodion/bulkload/logs</code>. The default name of the error files will be of the form <code>ERR_&lt;three-part-target-table-name&gt;_&lt;date&gt;_&lt;id&gt;</code>, where <code>&lt;id&gt;</code> is a numeric identifier unique to the process where the error was seen.</p>
+</div>
+<div class="paragraph">
+<p>This option is implied if <code>LOG ERROR ROWS [TO <em>error-location-name</em>]</code> or <code>STOP AFTER <em>num</em> ERROR ROWS</code> is specified and it is not enabled by default.</p>
 </div>
 </li>
 <li>
-<p><code>NO RECOVERY</code></p>
+<p><code>LOG ERROR ROWS [TO <em>error-location-name</em>]</code></p>
+<div class="paragraph">
+<p>If error rows must be written to a specified location, then specify TO <em>error-location-name</em>, otherwise they will be written to the default location.</p>
+</div>
 <div class="paragraph">
-<p>specifies that the Bulk Loader not use HBase snapshots for recovery. By
-default, the Bulk Loader handles recovery using the HBase snapshots
-mechanism.</p>
+<p>Error logs are written in separate files by the processes involved in the load command under sub-directory representing the load command in the given location.
+The actual log file location is displayed in the load command output.</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p><code><em>error-location-name</em></code></p>
+<div class="paragraph">
+<p>must be a HDFS directory name to which trafodion has write access.</p>
 </div>
 </li>
 </ul>
 </div>
 </li>
-</ul>
+<li>
+<p><code>STOP AFTER <em>num</em> ERROR ROWS</code></p>
+<div class="paragraph">
+<p>Use this option to stop the LOAD statement from progressing after num errors have been encountered during this statement.</p>
+</div>
+<div class="paragraph">
+<p>Duplicate check errors and errors which we have continued from using previous options are included in the count.</p>
 </div>
-<div style="page-break-after: always;"></div>
 <div class="ulist">
 <ul>
 <li>
+<p><em>num</em></p>
+<div class="paragraph">
+<p>specifies the number of error rows.</p>
+</div>
+</li>
+</ul>
+</div>
+</li>
+<li>
+<p><code>TRUNCATE TABLE</code></p>
+<div class="paragraph">
+<p>causes the Bulk Loader to truncate the target table before starting the
+load operation. By default, the Bulk Loader does not truncate the target
+table before loading data.</p>
+</div>
+</li>
+<li>
 <p><code>NO POPULATE INDEXES</code></p>
 <div class="paragraph">
 <p>specifies that the Bulk Loader not handle index maintenance or populate
@@ -18066,8 +18105,7 @@ data and generates an error when it detects duplicates.</p>
 the LOAD statement prints status messages listing the steps that the
 Bulk Loader is executing.</p>
 </div>
-<div class="ulist">
-<ul>
+</li>
 <li>
 <p><code>INDEX TABLE ONLY</code></p>
 <div class="paragraph">
@@ -18075,13 +18113,6 @@ Bulk Loader is executing.</p>
 data from the parent table.</p>
 </div>
 </li>
-<li>
-<p><code>UPSERT USING LOAD</code></p>
-<div class="paragraph">
-<p>specifies that the data be inserted into the target table using row set
-inserts without a transaction.</p>
-</div>
-</li>
 </ul>
 </div>
 </li>
@@ -44981,7 +45012,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 2017-05-29 17:37:12 UTC
+Last updated 2016-11-03 22:36:05 UTC
 </div>
 </div>
 <script>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/e64b94eb/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 9ef002f..fe01e7c 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 4b4f32b..17a0ee0 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 7842d0b..10af7f4 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 1c29e59..df39545 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 d61aace..3a316ed 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 68b4162..406638f 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 a359ce3..be5d253 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 9ec7a0d..3a58ee6 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 5ea9051..516c693 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/e64b94eb/docs/client_install/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/client_install/dependencies.html b/docs/client_install/dependencies.html
index a053700..81a5111 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/client_install/index.html
----------------------------------------------------------------------
diff --git a/docs/client_install/index.html b/docs/client_install/index.html
index 9ce92f9..8232c97 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 2017-05-29 17:37:12 UTC
+Last updated 2016-11-03 22:36:05 UTC
 </div>
 </div>
 <script>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/e64b94eb/docs/client_install/integration.html
----------------------------------------------------------------------
diff --git a/docs/client_install/integration.html b/docs/client_install/integration.html
index c853434..508ebf1 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/client_install/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/client_install/issue-tracking.html b/docs/client_install/issue-tracking.html
index a8854f2..84390d2 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/client_install/license.html
----------------------------------------------------------------------
diff --git a/docs/client_install/license.html b/docs/client_install/license.html
index d9c22ed..beb81a1 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/client_install/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/client_install/mail-lists.html b/docs/client_install/mail-lists.html
index 86e9252..55c2d6b 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/client_install/project-info.html
----------------------------------------------------------------------
diff --git a/docs/client_install/project-info.html b/docs/client_install/project-info.html
index 9c59f8a..e4fe378 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/client_install/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/client_install/project-summary.html b/docs/client_install/project-summary.html
index 33c96f4..76ae224 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/client_install/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/client_install/source-repository.html b/docs/client_install/source-repository.html
index 199b2d3..3a1fa57 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/client_install/team-list.html
----------------------------------------------------------------------
diff --git a/docs/client_install/team-list.html b/docs/client_install/team-list.html
index 6c7b211..990114d 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 e566c69..adb0401 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/e64b94eb/docs/command_interface/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/dependencies.html b/docs/command_interface/dependencies.html
index 1d72946..ee83eb8 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/command_interface/index.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/index.html b/docs/command_interface/index.html
index 8117df6..021be0c 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-06-10 02:21:44 UTC
+Last updated 2016-07-18 16:17:02 UTC
 </div>
 </div>
 <script>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/e64b94eb/docs/command_interface/integration.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/integration.html b/docs/command_interface/integration.html
index 369daf5..e3c1dcf 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/command_interface/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/issue-tracking.html b/docs/command_interface/issue-tracking.html
index b4834b9..e0c41f3 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/command_interface/license.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/license.html b/docs/command_interface/license.html
index dc31114..42174bc 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/command_interface/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/mail-lists.html b/docs/command_interface/mail-lists.html
index b894d6a..cf8d0d4 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/command_interface/project-info.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/project-info.html b/docs/command_interface/project-info.html
index 67cfcae..4b61161 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/command_interface/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/project-summary.html b/docs/command_interface/project-summary.html
index 861b8b5..71abfc2 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/command_interface/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/source-repository.html b/docs/command_interface/source-repository.html
index e44012b..63dd180 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/command_interface/team-list.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/team-list.html b/docs/command_interface/team-list.html
index a6f7dcd..a608bd9 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 a2ac79f..fc952f2 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/e64b94eb/docs/cqd_reference/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/dependencies.html b/docs/cqd_reference/dependencies.html
index 900c884..b9f9d40 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/cqd_reference/index.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/index.html b/docs/cqd_reference/index.html
index f8fdd6f..deefd27 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-06-10 02:21:44 UTC
+Last updated 2016-07-18 16:17:02 UTC
 </div>
 </div>
 <script>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/e64b94eb/docs/cqd_reference/integration.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/integration.html b/docs/cqd_reference/integration.html
index 2ab875d..05b09be 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/cqd_reference/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/issue-tracking.html b/docs/cqd_reference/issue-tracking.html
index 99bad76..19dadd8 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/cqd_reference/license.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/license.html b/docs/cqd_reference/license.html
index f2ef355..eeb1a32 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/cqd_reference/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/mail-lists.html b/docs/cqd_reference/mail-lists.html
index a7984b3..c956dcf 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/cqd_reference/project-info.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/project-info.html b/docs/cqd_reference/project-info.html
index 004b334..e9dc5be 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/cqd_reference/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/project-summary.html b/docs/cqd_reference/project-summary.html
index 56d2384..9adbbee 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/cqd_reference/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/source-repository.html b/docs/cqd_reference/source-repository.html
index 39792e1..f3003a2 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/docs/cqd_reference/team-list.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/team-list.html b/docs/cqd_reference/team-list.html
index 7be1b62..5b98c4c 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 12, 2017 -->
+<!-- Generated by Apache Maven Doxia at Dec 18, 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="20171212" />
+    <meta name="Date-Revision-yyyymmdd" content="20171218" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2017-12-12</span>
+        <span id="publishDate">Last Published: 2017-12-18</span>
                   &nbsp;| <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/e64b94eb/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 dc4c822..74c19af 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 Tue Dec 12 17:58:17 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 f045964..389e2f9 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 Tue Dec 12 17:58:17 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 0269401..f42b5ca 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 Tue Dec 12 17:58:17 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18:16 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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 8a1764e..990b130 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 Tue Dec 12 17:58:17 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 1f28e08..1d2491b 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 Tue Dec 12 17:58:17 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 748e5b7..d2a3855 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 Tue Dec 12 17:58:17 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/docs/dcs_reference/apidocs/index.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/index.html b/docs/dcs_reference/apidocs/index.html
index c312f12..b460ac0 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 Tue Dec 12 17:58:17 UTC 2017 -->
+<!-- Generated by javadoc on Mon Dec 18 19:18: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/e64b94eb/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 3610b55..0949b18 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 Tue Dec 12 17:58:16 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18:14 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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 c662932..48163c0 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 Tue Dec 12 17:58:16 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18:14 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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 6dc5ce8..088ebf7 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 Tue Dec 12 17:58:17 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18:16 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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 2950ca7..0488568 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 Tue Dec 12 17:58:17 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18:16 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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 db886a2..abb1a3f 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 Tue Dec 12 17:58:16 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 5feff56..1b1d389 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 Tue Dec 12 17:58:16 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 5b82a84..c01e5d1 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 Tue Dec 12 17:58:16 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 ae8b364..cb66a38 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 Tue Dec 12 17:58:16 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 8efe832..8bbaaff 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 Tue Dec 12 17:58:16 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 9596dfb..fb1a232 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 Tue Dec 12 17:58:16 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/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 beb5077..b2fab8f 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 Tue Dec 12 17:58:16 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18: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-12">
+<meta name="date" content="2017-12-18">
 <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/e64b94eb/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html
index 0c325a7..e027dab 100644
--- a/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html
+++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/http/HttpServer.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_91) on Tue Dec 12 17:58:16 UTC 2017 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Mon Dec 18 19:18:16 UTC 2017 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>HttpServer (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2017-12-12">
+<meta name="date" content="2017-12-18">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>