Repository: trafodion-site
Updated Branches:
  refs/heads/asf-site fa7941bbc -> 454b56a27


http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/docs/sql_reference/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/sql_reference/dependencies.html 
b/docs/sql_reference/dependencies.html
index 22f557e..94090c4 100644
--- a/docs/sql_reference/dependencies.html
+++ b/docs/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/sql_reference/index.html
----------------------------------------------------------------------
diff --git a/docs/sql_reference/index.html b/docs/sql_reference/index.html
index 6c659f5..27c54df 100644
--- a/docs/sql_reference/index.html
+++ b/docs/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/sql_reference/integration.html
----------------------------------------------------------------------
diff --git a/docs/sql_reference/integration.html 
b/docs/sql_reference/integration.html
index 03b99d5..5989de5 100644
--- a/docs/sql_reference/integration.html
+++ b/docs/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/sql_reference/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/sql_reference/issue-tracking.html 
b/docs/sql_reference/issue-tracking.html
index c7c6735..c975b19 100644
--- a/docs/sql_reference/issue-tracking.html
+++ b/docs/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/sql_reference/license.html
----------------------------------------------------------------------
diff --git a/docs/sql_reference/license.html b/docs/sql_reference/license.html
index 6904f99..a6e6197 100644
--- a/docs/sql_reference/license.html
+++ b/docs/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/sql_reference/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/sql_reference/mail-lists.html 
b/docs/sql_reference/mail-lists.html
index 5bd15e6..1a4278e 100644
--- a/docs/sql_reference/mail-lists.html
+++ b/docs/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/sql_reference/project-info.html
----------------------------------------------------------------------
diff --git a/docs/sql_reference/project-info.html 
b/docs/sql_reference/project-info.html
index e6a6973..ae42a28 100644
--- a/docs/sql_reference/project-info.html
+++ b/docs/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/sql_reference/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/sql_reference/project-summary.html 
b/docs/sql_reference/project-summary.html
index 2d1190e..af02c76 100644
--- a/docs/sql_reference/project-summary.html
+++ b/docs/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/sql_reference/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/sql_reference/source-repository.html 
b/docs/sql_reference/source-repository.html
index def98e6..c8c252f 100644
--- a/docs/sql_reference/source-repository.html
+++ b/docs/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/sql_reference/team-list.html
----------------------------------------------------------------------
diff --git a/docs/sql_reference/team-list.html 
b/docs/sql_reference/team-list.html
index 136de3c..aa8457d 100644
--- a/docs/sql_reference/team-list.html
+++ b/docs/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/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index cf9a869..914e54b 100644
--- a/index.html
+++ b/index.html
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by  Apache Maven Doxia at 2018-07-20
+ Generated by Apache Maven Doxia at 2018-07-20
  Rendered using Reflow Maven Skin 1.1.1 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">
@@ -160,16 +160,16 @@
                        <div class="item active">
                                <a class="externalLink" 
href="http://trafodion.apache.org";><img src="images/carousel/scale.png" 
alt="Hadoop Scale" /></a>
                                <div class="carousel-caption">
-                                       <h4 
id="Hadoop-Scale_with_SQL_Access"><a class="externalLink" 
href="http://trafodion.apache.org";>Hadoop-Scale with SQL Access</a></h4>  
-<p>Running out of room with your current SQL solution? Starting a new 
operational application? Trafodion allows you to work in SQL at Hadoop-scale 
levels.</p> 
-<div class="section"> 
+                                       <h4 
id="Hadoop-Scale_with_SQL_Access"><a class="externalLink" 
href="http://trafodion.apache.org";>Hadoop-Scale with SQL Access</a></h4>  
+<p>Running out of room with your current SQL solution? Starting a new 
operational application? Trafodion allows you to work in SQL at Hadoop-scale 
levels.</p> 
+<div class="section"> 
 </div>
                                </div>
                        </div>
                        <div class="item ">
                                <a href="index.html"><img 
src="images/carousel/stack.png" alt="Trafodion Stack" /></a>
                                <div class="carousel-caption">
-                                       <h4 
id="Fully_Integrated_with_HBase_and_Hive"><a href="index.html">Fully Integrated 
with HBase and Hive</a></h4>  
+                                       <h4 
id="Fully_Integrated_with_HBase_and_Hive"><a href="index.html">Fully Integrated 
with HBase and Hive</a></h4>  
 <p>Trafodion provides SQL access to structured, semi-structured, and 
unstructured data allowing you to run operational, historical, and analytical 
workloads on a single platform.</p>
                                </div>
                        </div>
@@ -180,48 +180,48 @@
        <div class="row">
                <div class="span12">
                        <div class="body-content">
-                               <div class="section"> 
- <h2 id="News">News</h2> 
- <table border="0" class="bodyTable table table-striped table-hover"> 
-  <tbody> 
-   <tr class="a"> 
-    <td> <p> </p> 
-     <div class="section"> 
-      <div class="section"> 
-       <div class="section"> 
-        <h5 id="Were_working_on_release_2.3">We're working on release 
2.3!</h5> 
-        <p></p> 
-        <p>Check out the <a class="externalLink" 
href="https://cwiki.apache.org/confluence/display/TRAFODION/Roadmap";>Roadmap</a>
 page for planned content.</p> 
-        <p></p> 
-       </div> 
-       <div class="section"> 
-        <h5 
id="Apache_Trafodion_2.2.0_our_first_release_as_a_Top_Level_Project_was_released_on_March_12_2018.">Apache
 Trafodion 2.2.0, our first release as a Top Level Project, was released on 
March 12, 2018.</h5> 
-        <p></p> 
-        <p>Check it out on the <a class="externalLink" 
href="http://trafodion.apache.org/download.html";>Download</a> page.</p> 
-        <p></p> 
-       </div> 
-       <div class="section"> 
-        <h5 id="Apache_Trafodion_is_now_a_Top_Level_Project">Apache Trafodion 
is now a Top Level Project!</h5> 
-        <p></p> 
-        <p>See the <a class="externalLink" 
href="http://globenewswire.com/news-release/2018/01/10/1286517/0/en/The-Apache-Software-Foundation-Announces-Apache-Trafodion-as-a-Top-Level-Project.html";>NewsWire</a>
 article for the official announcement.</p> 
-        <p>See also this nice <a class="externalLink" 
href="https://thenewstack.io/sql-hadoop-database-trafodion-bridges-transactions-analysis-divide/";>article</a>
 where Trafodion's own Suresh Subbiah spreads the word on Trafodion's 
features.</p> 
-        <p></p> 
-       </div> 
-       <div class="section"> 
-        <h5 
id="Apache_Trafodion_2.1.0-incubating_was_released_on_May_1_2017.">Apache 
Trafodion 2.1.0-incubating was released on May 1, 2017.</h5> 
-        <p></p> 
-        <p></p> 
-       </div> 
-       <div class="section"> 
-        <h5 
id="Want_to_discuss_Trafodion_in_Chinese_Join_the_Trafodion_discussion_on_Tencent_QQ">Want
 to discuss Trafodion in Chinese? Join the Trafodion discussion on Tencent 
QQ!</h5> 
-        <p></p> 
-        <p><a class="externalLink" href="http://im.qq.com/";>QQ</a> Group ID: 
233105278.</p> 
-       </div> 
-      </div> 
-     </div></td> 
-   </tr> 
-  </tbody> 
- </table> 
+                               <div class="section"> 
+ <h2 id="News">News</h2> 
+ <table border="0" class="bodyTable table table-striped table-hover"> 
+  <tbody> 
+   <tr class="a"> 
+    <td> <p> </p> 
+     <div class="section"> 
+      <div class="section"> 
+       <div class="section"> 
+        <h5 id="Were_working_on_release_2.3">We're working on release 
2.3!</h5> 
+        <p></p> 
+        <p>Check out the <a class="externalLink" 
href="https://cwiki.apache.org/confluence/display/TRAFODION/Roadmap";>Roadmap</a>
 page for planned content.</p> 
+        <p></p> 
+       </div> 
+       <div class="section"> 
+        <h5 
id="Apache_Trafodion_2.2.0_our_first_release_as_a_Top_Level_Project_was_released_on_March_12_2018.">Apache
 Trafodion 2.2.0, our first release as a Top Level Project, was released on 
March 12, 2018.</h5> 
+        <p></p> 
+        <p>Check it out on the <a class="externalLink" 
href="http://trafodion.apache.org/download.html";>Download</a> page.</p> 
+        <p></p> 
+       </div> 
+       <div class="section"> 
+        <h5 id="Apache_Trafodion_is_now_a_Top_Level_Project">Apache Trafodion 
is now a Top Level Project!</h5> 
+        <p></p> 
+        <p>See the <a class="externalLink" 
href="http://globenewswire.com/news-release/2018/01/10/1286517/0/en/The-Apache-Software-Foundation-Announces-Apache-Trafodion-as-a-Top-Level-Project.html";>NewsWire</a>
 article for the official announcement.</p> 
+        <p>See also this nice <a class="externalLink" 
href="https://thenewstack.io/sql-hadoop-database-trafodion-bridges-transactions-analysis-divide/";>article</a>
 where Trafodion's own Suresh Subbiah spreads the word on Trafodion's 
features.</p> 
+        <p></p> 
+       </div> 
+       <div class="section"> 
+        <h5 
id="Apache_Trafodion_2.1.0-incubating_was_released_on_May_1_2017.">Apache 
Trafodion 2.1.0-incubating was released on May 1, 2017.</h5> 
+        <p></p> 
+        <p></p> 
+       </div> 
+       <div class="section"> 
+        <h5 
id="Want_to_discuss_Trafodion_in_Chinese_Join_the_Trafodion_discussion_on_Tencent_QQ">Want
 to discuss Trafodion in Chinese? Join the Trafodion discussion on Tencent 
QQ!</h5> 
+        <p></p> 
+        <p><a class="externalLink" href="http://im.qq.com/";>QQ</a> Group ID: 
233105278.</p> 
+       </div> 
+      </div> 
+     </div></td> 
+   </tr> 
+  </tbody> 
+ </table> 
  <!-- 20160524 GTA Need more logos before using this part.
 
 Powered by Trafodion
@@ -236,38 +236,38 @@ Contribution opportunites: usage, code, tests, 
presentations, documentations, we
 
 ![Slide 2](images/logo-carousel/slide-2.png)
 
-Are you using Trafodion? We need permission to add your company's logo here. 
--> 
-</div>
-<div class="section"> 
- <h2 id="About">About</h2> 
- <p>Apache Trafodion is a webscale SQL-on-Hadoop solution enabling 
transactional or operational workloads on Apache Hadoop. </p> 
- <p>The name &quot;Trafodion&quot; (the Welsh word for transactions, 
pronounced &quot;Tra-vod-eee-on&quot;) was chosen specifically to emphasize the 
differentiation that Trafodion provides in closing a critical gap in the Hadoop 
ecosystem. </p> 
- <p>Trafodion builds on the scalability, elasticity, and flexibility of 
Hadoop. Trafodion extends Hadoop to provide guaranteed transactional integrity, 
enabling new kinds of big data applications to run on Hadoop. </p>  
+Are you using Trafodion? We need permission to add your company's logo here. 
--> 
+</div>
+<div class="section"> 
+ <h2 id="About">About</h2> 
+ <p>Apache Trafodion is a webscale SQL-on-Hadoop solution enabling 
transactional or operational workloads on Apache Hadoop. </p> 
+ <p>The name &quot;Trafodion&quot; (the Welsh word for transactions, 
pronounced &quot;Tra-vod-eee-on&quot;) was chosen specifically to emphasize the 
differentiation that Trafodion provides in closing a critical gap in the Hadoop 
ecosystem. </p> 
+ <p>Trafodion builds on the scalability, elasticity, and flexibility of 
Hadoop. Trafodion extends Hadoop to provide guaranteed transactional integrity, 
enabling new kinds of big data applications to run on Hadoop. </p>  
 </div>
                        </div>
                </div>
        </div>
        <div class="row columns columns2">
                <div class="span6">
-                       <h2 id="Key_Features">Key Features</h2>
-<ul> 
- <li>Full-functioned ANSI SQL language support</li> 
- <li>JDBC/ODBC connectivity for Linux/Windows clients</li> 
- <li>Distributed ACID transaction protection across multiple statements, 
tables and rows</li> 
- <li>Performance improvements for OLTP workloads with compile-time and 
run-time optimizations</li> 
- <li>Support for large data sets using a parallel-aware query optimizer</li> 
-</ul>
-<div class="section">   
+                       <h2 id="Key_Features">Key Features</h2>
+<ul> 
+ <li>Full-functioned ANSI SQL language support</li> 
+ <li>JDBC/ODBC connectivity for Linux/Windows clients</li> 
+ <li>Distributed ACID transaction protection across multiple statements, 
tables and rows</li> 
+ <li>Performance improvements for OLTP workloads with compile-time and 
run-time optimizations</li> 
+ <li>Support for large data sets using a parallel-aware query optimizer</li> 
+</ul>
+<div class="section">   
 </div>
                </div>
                <div class="span6">
-                       <h2 id="Key_Benefits">Key Benefits</h2>
-<ul> 
- <li>Reuse existing SQL skills and improve developer productivity</li> 
- <li>Distributed ACID transactions guarantee data consistency across multiple 
rows and tables</li> 
- <li>Interoperability with existing tools and applications</li> 
- <li>Hadoop and Linux distribution neutral</li> 
- <li>Easy to add to your existing Hadoop infrastructure</li> 
+                       <h2 id="Key_Benefits">Key Benefits</h2>
+<ul> 
+ <li>Reuse existing SQL skills and improve developer productivity</li> 
+ <li>Distributed ACID transactions guarantee data consistency across multiple 
rows and tables</li> 
+ <li>Interoperability with existing tools and applications</li> 
+ <li>Hadoop and Linux distribution neutral</li> 
+ <li>Easy to add to your existing Hadoop infrastructure</li> 
 </ul>
                </div>
        </div>
@@ -276,71 +276,71 @@ Are you using Trafodion? We need permission to add your 
company's logo here. -->
        <div class="row">
                <div class="span12">
                        <div class="body-content">
-                               <table border="0" class="bodyTable table 
table-striped table-hover"> 
- <tbody> 
-  <tr class="a"> 
-   <td width="33%" valign="top"> 
-    <center> 
-     <div class="section"> 
-      <h2 id="Understand">Understand</h2> 
-      <img src="images/logos/understand.png" width="108" height="108" alt="" 
/> 
-      <div class="section"> 
-       <div class="section"> 
-        <h4 id="What_makes_Trafodion_unique">What makes Trafodion unique</h4> 
-        <div class="customHr">
-          . 
-        </div> 
-       </div> 
-      </div> 
-     </div> 
-    </center> 
-    <ul> 
-     <li><a href="architecture-overview.html">Architecture</a></li> 
-     <li><a href="documentation.html">Documentation</a></li> 
-     <li><a href="faq.html">FAQ</a></li> 
-    </ul> </td> 
-   <td width="33%" valign="top"> 
-    <center> 
-     <div class="section"> 
-      <h2 id="Use">Use</h2> 
-      <img src="images/logos/use.png" width="108" height="108" alt="" /> 
-      <div class="section"> 
-       <div class="section"> 
-        <h4 id="Download_and_try_Trafodion">Download and try Trafodion</h4> 
-        <div class="customHr">
-          . 
-        </div> 
-       </div> 
-      </div> 
-     </div> 
-    </center> 
-    <ul> 
-     <li><a href="download.html">Download</a></li> 
-     <li><a href="quickstart.html">Quick Start</a></li> 
-     <li><a href="release-notes.html">Release Notes</a></li> 
-    </ul> </td> 
-   <td width="33%" valign="top"> 
-    <center> 
-     <div class="section"> 
-      <h2 id="Community">Community</h2> 
-      <img src="images/logos/community.png" width="108" height="108" alt="" /> 
-      <div class="section"> 
-       <div class="section"> 
-        <h4 id="Be_part_of_Trafodion">Be part of Trafodion</h4> 
-        <div class="customHr">
-          . 
-        </div> 
-       </div> 
-      </div> 
-     </div> 
-    </center> 
-    <ul> 
-     <li><a href="contributing-redirect.html">Contribute</a></li> 
-     <li><a href="mail-lists.html">Discuss</a></li> 
-     <li><a class="externalLink" 
href="https://cwiki.apache.org/confluence/display/TRAFODION/Apache+Trafodion+Home";>Wiki</a></li>
 
-    </ul> </td> 
-  </tr> 
- </tbody> 
+                               <table border="0" class="bodyTable table 
table-striped table-hover"> 
+ <tbody> 
+  <tr class="a"> 
+   <td width="33%" valign="top"> 
+    <center> 
+     <div class="section"> 
+      <h2 id="Understand">Understand</h2> 
+      <img src="images/logos/understand.png" width="108" height="108" alt="" 
/> 
+      <div class="section"> 
+       <div class="section"> 
+        <h4 id="What_makes_Trafodion_unique">What makes Trafodion unique</h4> 
+        <div class="customHr">
+          . 
+        </div> 
+       </div> 
+      </div> 
+     </div> 
+    </center> 
+    <ul> 
+     <li><a href="architecture-overview.html">Architecture</a></li> 
+     <li><a href="documentation.html">Documentation</a></li> 
+     <li><a href="faq.html">FAQ</a></li> 
+    </ul> </td> 
+   <td width="33%" valign="top"> 
+    <center> 
+     <div class="section"> 
+      <h2 id="Use">Use</h2> 
+      <img src="images/logos/use.png" width="108" height="108" alt="" /> 
+      <div class="section"> 
+       <div class="section"> 
+        <h4 id="Download_and_try_Trafodion">Download and try Trafodion</h4> 
+        <div class="customHr">
+          . 
+        </div> 
+       </div> 
+      </div> 
+     </div> 
+    </center> 
+    <ul> 
+     <li><a href="download.html">Download</a></li> 
+     <li><a href="quickstart.html">Quick Start</a></li> 
+     <li><a href="release-notes.html">Release Notes</a></li> 
+    </ul> </td> 
+   <td width="33%" valign="top"> 
+    <center> 
+     <div class="section"> 
+      <h2 id="Community">Community</h2> 
+      <img src="images/logos/community.png" width="108" height="108" alt="" /> 
+      <div class="section"> 
+       <div class="section"> 
+        <h4 id="Be_part_of_Trafodion">Be part of Trafodion</h4> 
+        <div class="customHr">
+          . 
+        </div> 
+       </div> 
+      </div> 
+     </div> 
+    </center> 
+    <ul> 
+     <li><a href="contributing-redirect.html">Contribute</a></li> 
+     <li><a href="mail-lists.html">Discuss</a></li> 
+     <li><a class="externalLink" 
href="https://cwiki.apache.org/confluence/display/TRAFODION/Apache+Trafodion+Home";>Wiki</a></li>
 
+    </ul> </td> 
+  </tr> 
+ </tbody> 
 </table>
                        </div>
                </div>
@@ -491,12 +491,12 @@ Are you using Trafodion? We need permission to add your 
company's logo here. -->
                                        </ul>
                                </div>
                                <div class="span4 bottom-description">
-                                       <blockquote><a 
href="http://trafodion.apache.org/";>Apache Trafodion</a> is a webscale 
SQL-on-Hadoop solution enabling transactional or operational
-          workloads on Hadoop. <br /><br />The name &quot;Trafodion&quot; (the 
Welsh word for transactions, pronounced
-          &quot;Tra-vod-eee-on&quot;) was chosen specifically to emphasize the 
differentiation that 
-          Trafodion provides in closing a critical gap in the Hadoop 
ecosystem.<br /><br />          
-          Trafodion builds on the scalability, elasticity, and flexibility of 
Hadoop. Trafodion extends 
-          Hadoop to provide guaranteed transactional integrity, enabling new 
kinds of big data 
+                                       <blockquote><a 
href="http://trafodion.apache.org/";>Apache Trafodion</a> is a webscale 
SQL-on-Hadoop solution enabling transactional or operational
+          workloads on Hadoop. <br /><br />The name &quot;Trafodion&quot; (the 
Welsh word for transactions, pronounced
+          &quot;Tra-vod-eee-on&quot;) was chosen specifically to emphasize the 
differentiation that 
+          Trafodion provides in closing a critical gap in the Hadoop 
ecosystem.<br /><br />          
+          Trafodion builds on the scalability, elasticity, and flexibility of 
Hadoop. Trafodion extends 
+          Hadoop to provide guaranteed transactional integrity, enabling new 
kinds of big data 
           applications to run on Hadoop.</blockquote>
                                </div>
                        </div>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/integration.html
----------------------------------------------------------------------
diff --git a/integration.html b/integration.html
index 85b73be..17c2a5e 100644
--- a/integration.html
+++ b/integration.html
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2018-08-10
+ Generated by Apache Maven Doxia at 2018-08-21
  Rendered using Reflow Maven Skin 1.1.1 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/issue-tracking.html
----------------------------------------------------------------------
diff --git a/issue-tracking.html b/issue-tracking.html
index 9369a5d..fa40432 100644
--- a/issue-tracking.html
+++ b/issue-tracking.html
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2018-08-10
+ Generated by Apache Maven Doxia at 2018-08-21
  Rendered using Reflow Maven Skin 1.1.1 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/license.html
----------------------------------------------------------------------
diff --git a/license.html b/license.html
index 167dbc5..f0af40b 100644
--- a/license.html
+++ b/license.html
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2018-08-10
+ Generated by Apache Maven Doxia at 2018-08-21
  Rendered using Reflow Maven Skin 1.1.1 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/mail-lists.html
----------------------------------------------------------------------
diff --git a/mail-lists.html b/mail-lists.html
index 24ac369..c6861c1 100644
--- a/mail-lists.html
+++ b/mail-lists.html
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2018-08-10
+ Generated by Apache Maven Doxia at 2018-08-21
  Rendered using Reflow Maven Skin 1.1.1 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/modules.html
----------------------------------------------------------------------
diff --git a/modules.html b/modules.html
index d1743ae..4015a7b 100644
--- a/modules.html
+++ b/modules.html
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2018-08-10
+ Generated by Apache Maven Doxia at 2018-08-21
  Rendered using Reflow Maven Skin 1.1.1 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/project-info.html
----------------------------------------------------------------------
diff --git a/project-info.html b/project-info.html
index c4a03c6..256a202 100644
--- a/project-info.html
+++ b/project-info.html
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2018-08-10
+ Generated by Apache Maven Doxia at 2018-08-21
  Rendered using Reflow Maven Skin 1.1.1 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/project-summary.html
----------------------------------------------------------------------
diff --git a/project-summary.html b/project-summary.html
index 2d14638..130f884 100644
--- a/project-summary.html
+++ b/project-summary.html
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2018-08-10
+ Generated by Apache Maven Doxia at 2018-08-21
  Rendered using Reflow Maven Skin 1.1.1 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/source-repository.html
----------------------------------------------------------------------
diff --git a/source-repository.html b/source-repository.html
index 6e0726d..cdd7814 100644
--- a/source-repository.html
+++ b/source-repository.html
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2018-08-10
+ Generated by Apache Maven Doxia at 2018-08-21
  Rendered using Reflow Maven Skin 1.1.1 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/454b56a2/team-list.html
----------------------------------------------------------------------
diff --git a/team-list.html b/team-list.html
index 5a328be..c79183d 100644
--- a/team-list.html
+++ b/team-list.html
@@ -1,7 +1,7 @@
 
 <!DOCTYPE html>
 <!--
- Generated by Apache Maven Doxia at 2018-08-10
+ Generated by Apache Maven Doxia at 2018-08-21
  Rendered using Reflow Maven Skin 1.1.1 
(http://andriusvelykis.github.io/reflow-maven-skin)
 -->
 <html  xml:lang="en" lang="en">

Reply via email to