http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/docs/2.4.0/sql_reference/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/2.4.0/sql_reference/dependencies.html 
b/docs/2.4.0/sql_reference/dependencies.html
index 22f557e..94090c4 100644
--- a/docs/2.4.0/sql_reference/dependencies.html
+++ b/docs/2.4.0/sql_reference/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/2.4.0/sql_reference/index.html
----------------------------------------------------------------------
diff --git a/docs/2.4.0/sql_reference/index.html 
b/docs/2.4.0/sql_reference/index.html
index 6c659f5..27c54df 100644
--- a/docs/2.4.0/sql_reference/index.html
+++ b/docs/2.4.0/sql_reference/index.html
@@ -23052,7 +23052,7 @@ FRACTION in 4 bytes<br></p></td>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock">TIMESTAMP 
(with time precision)</p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Point in 
time, with time precision</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Format as 
YYYY-MM-DD HH:MM:SS.FFFFFF; actual database storage size is 1 byte</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Format as 
YYYY-MM-DD HH:MM:SS.FFFFFF; actual database storage size is 7 or 11 
bytes</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Interval 
Data Types</p></td>
@@ -23719,14 +23719,126 @@ default for <em>time-precision</em> is 0, and the 
maximum is 6.</p>
 </div>
 </li>
 <li>
-<p><code>TIMESTAMP [(<em>timestamp-precision</em>)]</code></p>
+<p><code>TIMESTAMP</code></p>
+<div class="ulist">
+<ul>
+<li>
+<p>specifies a datetime column.</p>
+<div class="paragraph">
+<p>The timestamp in the external form is <code>yyyy-mm-dd 
hh:mm:ss.ffffff</code> <strong>with the default precision of 6</strong>, the 
storage size is 11 bytes.</p>
+</div>
+<div class="paragraph">
+<p><strong>Example</strong></p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="text">SQL&gt;SELECT 
CAST(CURRENT_TIMESTAMP AS TIMESTAMP) FROM DUAL;
+
+(EXPR)
+--------------------------
+2018-08-14 05:04:14.000591
+
+--- 1 row(s) selected.</code></pre>
+</div>
+</div>
+</li>
+</ul>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="text">SQL&gt;CREATE TABLE 
test1(c1 TIMESTAMP);
+
+--- SQL operation complete.
+
+
+SQL&gt;SHOWDDL test1;
+
+CREATE TABLE TRAFODION.SEABASE.TEST1
+  (
+    C1                               TIMESTAMP(6) DEFAULT NULL NOT SERIALIZED
+  )
+ ATTRIBUTES ALIGNED FORMAT
+;
+
+-- GRANT SELECT, INSERT, DELETE, UPDATE, REFERENCES ON TRAFODION.SEABASE.TEST1 
TO DB__ROOT WITH GRANT OPTION;
+
+--- SQL operation complete.</code></pre>
+</div>
+</div>
+</li>
+<li>
+<p><code>TIMESTAMP (<em>timestamp-precision</em>)</code></p>
 <div class="paragraph">
-<p>specifies a datetime column that, without the optional
-<em>timestamp-precision</em>, contains a timestamp in the external form
-yyyy-mm-dd hh:mm:ss and is stored in seven bytes. <em>timestamp-precision</em>
-is an unsigned integer that specifies the number of digits in the
-fractional seconds and is stored in four bytes. The default for
-<em>timestamp-precision</em> is 6, and the maximum is 6.</p>
+<p>specifies a datetime column with the 
<code><em>timestamp-precision</em></code>.</p>
+</div>
+<div class="paragraph">
+<p>The <code><em>timestamp-precision</em></code> is an unsigned integer that 
specifies the number of digits in the
+fractional seconds, the range of <code><em>timestamp-precision</em></code> is 
from 0 to 9, the storage size varies depending
+on the <code><em>timestamp-precision</em></code>.</p>
+</div>
+<table class="tableblock frame-all grid-all spread">
+<colgroup>
+<col style="width: 50%;">
+<col style="width: 50%;">
+</colgroup>
+<tbody>
+<tr>
+<td class="tableblock halign-center valign-top"><p 
class="tableblock"><code><em>time-precision</em></code></p></td>
+<td class="tableblock halign-center valign-top"><p class="tableblock">Storage 
Size (bytes)</p></td>
+</tr>
+<tr>
+<td class="tableblock halign-center valign-top"><p 
class="tableblock">0</p></td>
+<td class="tableblock halign-center valign-top"><p 
class="tableblock">7</p></td>
+</tr>
+<tr>
+<td class="tableblock halign-center valign-top"><p 
class="tableblock">1~9</p></td>
+<td class="tableblock halign-center valign-top"><p 
class="tableblock">11</p></td>
+</tr>
+</tbody>
+</table>
+<div class="paragraph">
+<p><strong>Example</strong></p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="text">SQL&gt;CREATE TABLE 
test2 (c1 TIMESTAMP, c2 TIMESTAMP(0), c3 TIMESTAMP(1), c4 TIMESTAMP(2), c5 
TIMESTAMP(6), c6 TIMESTAMP(9));
+
+--- SQL operation complete.
+
+
+SQL&gt;SELECT COLUMN_NAME, COLUMN_SIZE from &quot;_MD_&quot;.columns_view 
WHERE TABLE_NAME = 'TEST2';
+
+COLUMN_NAME                   COLUMN_SIZE
+-----------------------------------------
+C1                                     11
+C2                                      7
+C3                                     11
+C4                                     11
+C5                                     11
+C6                                     11
+SYSKEY                                  8
+
+--- 7 row(s) selected.
+
+
+SQL&gt;SHOWDDL test2;
+
+CREATE TABLE TRAFODION.SEABASE.TEST2
+  (
+    C1                               TIMESTAMP(6) DEFAULT NULL NOT SERIALIZED
+  , C2                               TIMESTAMP(0) DEFAULT NULL NOT SERIALIZED
+  , C3                               TIMESTAMP(1) DEFAULT NULL NOT SERIALIZED
+  , C4                               TIMESTAMP(2) DEFAULT NULL NOT SERIALIZED
+  , C5                               TIMESTAMP(6) DEFAULT NULL NOT SERIALIZED
+  , C6                               TIMESTAMP(9) DEFAULT NULL NOT SERIALIZED
+  )
+ ATTRIBUTES ALIGNED FORMAT
+;
+
+-- GRANT SELECT, INSERT, DELETE, UPDATE, REFERENCES ON TRAFODION.SEABASE.TEST2 
TO DB__ROOT WITH GRANT OPTION;
+
+--- SQL operation complete.</code></pre>
+</div>
 </div>
 </li>
 </ul>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/docs/2.4.0/sql_reference/integration.html
----------------------------------------------------------------------
diff --git a/docs/2.4.0/sql_reference/integration.html 
b/docs/2.4.0/sql_reference/integration.html
index 03b99d5..5989de5 100644
--- a/docs/2.4.0/sql_reference/integration.html
+++ b/docs/2.4.0/sql_reference/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/2.4.0/sql_reference/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/2.4.0/sql_reference/issue-tracking.html 
b/docs/2.4.0/sql_reference/issue-tracking.html
index c7c6735..c975b19 100644
--- a/docs/2.4.0/sql_reference/issue-tracking.html
+++ b/docs/2.4.0/sql_reference/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/2.4.0/sql_reference/license.html
----------------------------------------------------------------------
diff --git a/docs/2.4.0/sql_reference/license.html 
b/docs/2.4.0/sql_reference/license.html
index 6904f99..a6e6197 100644
--- a/docs/2.4.0/sql_reference/license.html
+++ b/docs/2.4.0/sql_reference/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/2.4.0/sql_reference/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/2.4.0/sql_reference/mail-lists.html 
b/docs/2.4.0/sql_reference/mail-lists.html
index 5bd15e6..1a4278e 100644
--- a/docs/2.4.0/sql_reference/mail-lists.html
+++ b/docs/2.4.0/sql_reference/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/2.4.0/sql_reference/project-info.html
----------------------------------------------------------------------
diff --git a/docs/2.4.0/sql_reference/project-info.html 
b/docs/2.4.0/sql_reference/project-info.html
index e6a6973..ae42a28 100644
--- a/docs/2.4.0/sql_reference/project-info.html
+++ b/docs/2.4.0/sql_reference/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/2.4.0/sql_reference/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/2.4.0/sql_reference/project-summary.html 
b/docs/2.4.0/sql_reference/project-summary.html
index 2d1190e..af02c76 100644
--- a/docs/2.4.0/sql_reference/project-summary.html
+++ b/docs/2.4.0/sql_reference/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/2.4.0/sql_reference/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/2.4.0/sql_reference/source-repository.html 
b/docs/2.4.0/sql_reference/source-repository.html
index def98e6..c8c252f 100644
--- a/docs/2.4.0/sql_reference/source-repository.html
+++ b/docs/2.4.0/sql_reference/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/2.4.0/sql_reference/team-list.html
----------------------------------------------------------------------
diff --git a/docs/2.4.0/sql_reference/team-list.html 
b/docs/2.4.0/sql_reference/team-list.html
index 136de3c..aa8457d 100644
--- a/docs/2.4.0/sql_reference/team-list.html
+++ b/docs/2.4.0/sql_reference/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/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 f6e8f65..b1d18a4 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/454b56a2/docs/client_install/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/client_install/dependencies.html 
b/docs/client_install/dependencies.html
index 19a3f05..38a841d 100644
--- a/docs/client_install/dependencies.html
+++ b/docs/client_install/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/client_install/integration.html
----------------------------------------------------------------------
diff --git a/docs/client_install/integration.html 
b/docs/client_install/integration.html
index 3c5557e..da7b58a 100644
--- a/docs/client_install/integration.html
+++ b/docs/client_install/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/client_install/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/client_install/issue-tracking.html 
b/docs/client_install/issue-tracking.html
index a7a3c0c..a11d7fe 100644
--- a/docs/client_install/issue-tracking.html
+++ b/docs/client_install/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/client_install/license.html
----------------------------------------------------------------------
diff --git a/docs/client_install/license.html b/docs/client_install/license.html
index 4ee4c36..b29b902 100644
--- a/docs/client_install/license.html
+++ b/docs/client_install/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/client_install/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/client_install/mail-lists.html 
b/docs/client_install/mail-lists.html
index 5240414..bc8a5a1 100644
--- a/docs/client_install/mail-lists.html
+++ b/docs/client_install/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/client_install/project-info.html
----------------------------------------------------------------------
diff --git a/docs/client_install/project-info.html 
b/docs/client_install/project-info.html
index 13cc4df..a4eb62f 100644
--- a/docs/client_install/project-info.html
+++ b/docs/client_install/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/client_install/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/client_install/project-summary.html 
b/docs/client_install/project-summary.html
index fc348c8..7f85bbd 100644
--- a/docs/client_install/project-summary.html
+++ b/docs/client_install/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/client_install/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/client_install/source-repository.html 
b/docs/client_install/source-repository.html
index 626b670..4ef4d24 100644
--- a/docs/client_install/source-repository.html
+++ b/docs/client_install/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/client_install/team-list.html
----------------------------------------------------------------------
diff --git a/docs/client_install/team-list.html 
b/docs/client_install/team-list.html
index 090576a..07c6200 100644
--- a/docs/client_install/team-list.html
+++ b/docs/client_install/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/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 b04de7c..582b65c 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/454b56a2/docs/command_interface/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/dependencies.html 
b/docs/command_interface/dependencies.html
index 516ae72..1f4c6bf 100644
--- a/docs/command_interface/dependencies.html
+++ b/docs/command_interface/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/command_interface/integration.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/integration.html 
b/docs/command_interface/integration.html
index 794b8ba..438259a 100644
--- a/docs/command_interface/integration.html
+++ b/docs/command_interface/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/command_interface/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/issue-tracking.html 
b/docs/command_interface/issue-tracking.html
index 53fe6bf..e456d4f 100644
--- a/docs/command_interface/issue-tracking.html
+++ b/docs/command_interface/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/command_interface/license.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/license.html 
b/docs/command_interface/license.html
index e98acf7..1d74ce3 100644
--- a/docs/command_interface/license.html
+++ b/docs/command_interface/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/command_interface/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/mail-lists.html 
b/docs/command_interface/mail-lists.html
index 91a41e2..e9479b4 100644
--- a/docs/command_interface/mail-lists.html
+++ b/docs/command_interface/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/command_interface/project-info.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/project-info.html 
b/docs/command_interface/project-info.html
index e7368d0..2d0fe54 100644
--- a/docs/command_interface/project-info.html
+++ b/docs/command_interface/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/command_interface/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/project-summary.html 
b/docs/command_interface/project-summary.html
index 64eb640..5d9125a 100644
--- a/docs/command_interface/project-summary.html
+++ b/docs/command_interface/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/command_interface/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/source-repository.html 
b/docs/command_interface/source-repository.html
index 0fc0e1a..e838354 100644
--- a/docs/command_interface/source-repository.html
+++ b/docs/command_interface/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/command_interface/team-list.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/team-list.html 
b/docs/command_interface/team-list.html
index 9f6eb09..29f8171 100644
--- a/docs/command_interface/team-list.html
+++ b/docs/command_interface/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/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 52a96e1..eea948b 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/454b56a2/docs/cqd_reference/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/dependencies.html 
b/docs/cqd_reference/dependencies.html
index 3d1e840..f2d1e5c 100644
--- a/docs/cqd_reference/dependencies.html
+++ b/docs/cqd_reference/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/cqd_reference/integration.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/integration.html 
b/docs/cqd_reference/integration.html
index 053df82..2f361c1 100644
--- a/docs/cqd_reference/integration.html
+++ b/docs/cqd_reference/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/cqd_reference/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/issue-tracking.html 
b/docs/cqd_reference/issue-tracking.html
index 4c6182a..7ee68da 100644
--- a/docs/cqd_reference/issue-tracking.html
+++ b/docs/cqd_reference/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/cqd_reference/license.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/license.html b/docs/cqd_reference/license.html
index 4ee5c42..a7aeb6c 100644
--- a/docs/cqd_reference/license.html
+++ b/docs/cqd_reference/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.0</span>
                       </div>
             <div class="xright">                    <a href="./" 
title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>
@@ -97,7 +97,210 @@
 <div class="section">
 <h3>The Apache Software License, Version 2.0<a 
name="The_Apache_Software_License_Version_2.0"></a></h3><a 
name="The_Apache_Software_License_Version_2.0"></a>
 <p>A business-friendly OSS license</p>
-<p>Can't read the url [http://www.apache.org/licenses/LICENSE-2.0.txt] : Read 
timed out</p></div></div>
+<div class="source">
+<pre>
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      &quot;License&quot; shall mean the terms and conditions for use, 
reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      &quot;Licensor&quot; shall mean the copyright owner or entity authorized 
by
+      the copyright owner that is granting the License.
+
+      &quot;Legal Entity&quot; shall mean the union of the acting entity and 
all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      &quot;control&quot; means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      &quot;You&quot; (or &quot;Your&quot;) shall mean an individual or Legal 
Entity
+      exercising permissions granted by this License.
+
+      &quot;Source&quot; form shall mean the preferred form for making 
modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      &quot;Object&quot; form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      &quot;Work&quot; shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      &quot;Derivative Works&quot; shall mean any work, whether in Source or 
Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      &quot;Contribution&quot; shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, 
&quot;submitted&quot;
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as &quot;Not a 
Contribution.&quot;
+
+      &quot;Contributor&quot; shall mean Licensor and any individual or Legal 
Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a &quot;NOTICE&quot; text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an &quot;AS IS&quot; BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets &quot;[]&quot;
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same &quot;printed page&quot; as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an &quot;AS IS&quot; BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+</pre></div></div></div>
       </div>
     </div>
     <div class="clear">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/docs/cqd_reference/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/mail-lists.html 
b/docs/cqd_reference/mail-lists.html
index 38a819c..5352ca2 100644
--- a/docs/cqd_reference/mail-lists.html
+++ b/docs/cqd_reference/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/cqd_reference/project-info.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/project-info.html 
b/docs/cqd_reference/project-info.html
index 6a0af1d..f879274 100644
--- a/docs/cqd_reference/project-info.html
+++ b/docs/cqd_reference/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/cqd_reference/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/project-summary.html 
b/docs/cqd_reference/project-summary.html
index ce607ea..7ad8f76 100644
--- a/docs/cqd_reference/project-summary.html
+++ b/docs/cqd_reference/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/cqd_reference/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/source-repository.html 
b/docs/cqd_reference/source-repository.html
index 0806f3d..9f9e62e 100644
--- a/docs/cqd_reference/source-repository.html
+++ b/docs/cqd_reference/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/docs/cqd_reference/team-list.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/team-list.html 
b/docs/cqd_reference/team-list.html
index bd1e8bb..f997588 100644
--- a/docs/cqd_reference/team-list.html
+++ b/docs/cqd_reference/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
-<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-10 -->
+<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-08-21 -->
 <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="20180810" />
+    <meta name="Date-Revision-yyyymmdd" content="20180821" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
                     
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-08-10</span>
+        <span id="publishDate">Last Published: 2018-08-21</span>
                   &nbsp;| <span id="projectVersion">Version: 2.4.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/454b56a2/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 e57ecc6..edd3e61 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_80) on Fri Aug 10 12:47:49 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Aug 21 11:36:01 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>All Classes (Trafodion Database Connectivity Services 2.4.0 API)</title>
-<meta name="date" content="2018-08-10">
+<meta name="date" content="2018-08-21">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/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 0245a95..9e59a89 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_80) on Fri Aug 10 12:47:49 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Aug 21 11:36:01 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>All Classes (Trafodion Database Connectivity Services 2.4.0 API)</title>
-<meta name="date" content="2018-08-10">
+<meta name="date" content="2018-08-21">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/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 63edc82..f331cbf 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_80) on Fri Aug 10 12:47:49 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Aug 21 11:36:00 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Constant Field Values (Trafodion Database Connectivity Services 2.4.0 
API)</title>
-<meta name="date" content="2018-08-10">
+<meta name="date" content="2018-08-21">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/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 2b83fef..65fb407 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_80) on Fri Aug 10 12:47:49 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Aug 21 11:36:01 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Deprecated List (Trafodion Database Connectivity Services 2.4.0 
API)</title>
-<meta name="date" content="2018-08-10">
+<meta name="date" content="2018-08-21">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/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 9715a8a..e5e7424 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_80) on Fri Aug 10 12:47:49 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Aug 21 11:36:01 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>API Help (Trafodion Database Connectivity Services 2.4.0 API)</title>
-<meta name="date" content="2018-08-10">
+<meta name="date" content="2018-08-21">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/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 61c0919..bb59193 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_80) on Fri Aug 10 12:47:49 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Aug 21 11:36:01 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Index (Trafodion Database Connectivity Services 2.4.0 API)</title>
-<meta name="date" content="2018-08-10">
+<meta name="date" content="2018-08-21">
 <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/docs/dcs_reference/apidocs/index.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/index.html 
b/docs/dcs_reference/apidocs/index.html
index e094263..65b1522 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 Fri Aug 10 12:47:49 CST 2018 -->
+<!-- Generated by javadoc on Tue Aug 21 11:36:01 CST 2018 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Trafodion Database Connectivity Services 2.4.0 API</title>
 <script type="text/javascript">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/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 6ee09df..a3feadc 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_80) on Fri Aug 10 12:47:46 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Aug 21 11:35:57 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Constants (Trafodion Database Connectivity Services 2.4.0 API)</title>
-<meta name="date" content="2018-08-10">
+<meta name="date" content="2018-08-21">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" 
title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/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 f8b781d..028ef42 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_80) on Fri Aug 10 12:47:46 CST 2018 
-->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Aug 21 11:35:57 CST 2018 
-->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>VersionAnnotation (Trafodion Database Connectivity Services 2.4.0 
API)</title>
-<meta name="date" content="2018-08-10">
+<meta name="date" content="2018-08-21">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" 
title="Style">
 </head>
 <body>

Reply via email to