Repository: trafodion-site Updated Branches: refs/heads/asf-site e010b1a8b -> fe15ac571
http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/sql_reference/dependencies.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/dependencies.html b/docs/sql_reference/dependencies.html index 6bbe215..382c7d6 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-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <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="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/sql_reference/index.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/index.html b/docs/sql_reference/index.html index 1cd4a1d..4a3142f 100644 --- a/docs/sql_reference/index.html +++ b/docs/sql_reference/index.html @@ -11725,21 +11725,37 @@ in the Trafodion instance.</p> <pre class="CodeRay highlight"><code data-lang="text">GET option option is: - COMPONENT PRIVILEGES ON component-name [FOR auth-name] + CATALOGS + | COMPONENT PRIVILEGES ON component-name [FOR auth-name] | COMPONENTS | FUNCTIONS FOR LIBRARY [[catalog-name.]schema-name.]library-name | FUNCTIONS [IN SCHEMA [catalog-name.]schema-name] + | HBASE REGISTERED TABLES IN CATALOG TRAFODION + | HIVE EXTERNAL TABLES IN CATALOG TRAFODION + | HIVE REGISTERED {OBJECTS | SCHEMAS | TABLES | VIEWS} IN CATALOG TRAFODION + | INDEXES [IN SCHEMA schema-name] + | INDEXES [ON TABLE table-name] | LIBRARIES [IN SCHEMA [catalog-name.]schema-name] | PROCEDURES FOR LIBRARY [[catalog-name.]schema-name.]library-name | PROCEDURES [IN SCHEMA [catalog-name.]schema-name] | ROLES [FOR USER database-username] + | SEQUENCES [IN CATALOG catalog-name] + | SEQUENCES [IN SCHEMA schema-name}] | SCHEMAS [IN CATALOG catalog-name] | SCHEMAS FOR [USER | ROLE] authorization-id + | TABLES [IN CATALOG catalog-name] | TABLES [IN SCHEMA [catalog-name.]schema-name] + | TABLES [IN VIEW view-name] | USERS [FOR ROLE role-name] + | VIEWS [IN CATALOG catalog-name] | VIEWS [IN SCHEMA [catalog-name.]schema-name] + | VIEWS [IN VIEW view-name] + | VIEWS [ON VIEW view-name] | VIEWS ON TABLE [[catalog-name.]schema-name.]table-name - | PRIVILEGES FOR {USER | ROLE} authorization-id</code></pre> + | PRIVILEGES FOR {USER database-username | ROLE role-name} + | PRIVILEGES ON SEQUENCE sequence-name + | PRIVILEGES ON TABLE table-name + | PRIVILEGES ON VIEW view-name</code></pre> </div> </div> <div class="sect3"> @@ -11877,6 +11893,12 @@ and the schema is seabase.</p> </div> </li> <li> +<p><code>TABLES [IN VIEW view-name]</code></p> +<div class="paragraph"> +<p>returns tables that referenced by the view <em>view-name</em>.</p> +</div> +</li> +<li> <p><code>USERS</code></p> <div class="paragraph"> <p>displays a list of all the registered database users.</p> @@ -11908,9 +11930,24 @@ and the schema is seabase.</p> </div> </li> <li> +<p><code>VIEWS [IN VIEW <em>view-name</em>]</code></p> +<div class="paragraph"> +<p>returns views that referenced by the view <em>view-name</em>.</p> +</div> +</li> +<li> +<p><code>VIEWS [ON VIEW <em>view-name</em>]</code></p> +<div class="paragraph"> +<p>returns views that reference the view <em>view-name</em>.</p> +</div> +</li> +<li> <p><code>VIEWS ON TABLE <em>[[catalog-name.]schema-name.]table-name</em></code></p> <div class="paragraph"> -<p>displays the names of all the views that were created for the specified table. If you do not qualify the table name with +<p>returns views that reference the table <em>table-name</em>.</p> +</div> +<div class="paragraph"> +<p>If you do not qualify the table name with catalog and schema names, get uses the catalog and schema of the current session. For the <em>catalog-name</em>, you can specify only trafodion.</p> </div> @@ -12038,6 +12075,118 @@ TRAFODION.SEABASE:</p> </div> </li> <li> +<p>This example makes comparisons among <code>GET VIEWS [IN VIEW <em>view-name</em>]</code>, <code>GET VIEWS [ON VIEW <em>view-name</em>]</code>, <code>GET VIEWS [ON TABLE <em>table-name</em>]</code> +and <code>GET TABLES [IN VIEW <em>view-name</em>]</code>.</p> +<div class="paragraph"> +<p>Creates the table <em>t1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>CREATE TABLE t1 (c1 int); + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>Creates the view <em>v1</em> based on the table <em>t1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>CREATE VIEW v1 AS SELECT * FROM t1; + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>Creates the view <em>v2</em> based on the view <em>v1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>CREATE VIEW v2 AS SELECT * FROM v1; + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns nothing as no views are referenced by <em>v1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET VIEWS IN VIEW v1; + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns <em>v1</em> as <em>v1</em> is referenced by <em>v2</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET VIEWS IN VIEW v2; + +TRAFODION.SEABASE.V1 + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns <em>v2</em> as <em>v2</em> references <em>v1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET VIEWS ON VIEW v1; + +TRAFODION.SEABASE.V2 + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns nothing as no views reference <em>v2</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET VIEWS ON VIEW v2; + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statements returns <em>v1</em> as <em>v1</em> references <em>t1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET VIEWS ON TABLE t1; + +TRAFODION.SEABASE.V1 + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns <em>t1</em> as <em>t1</em> is referenced by <em>v1</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET TABLES IN VIEW v1; + +TRAFODION.SEABASE.T1 + +--- SQL operation complete.</code></pre> +</div> +</div> +<div class="paragraph"> +<p>This statement returns nothing as no tables are referenced by <em>v2</em>.</p> +</div> +<div class="listingblock"> +<div class="content"> +<pre class="CodeRay highlight"><code data-lang="text">SQL>GET TABLES IN VIEW v2; + +--- SQL operation complete.</code></pre> +</div> +</div> +</li> +<li> <p>This GET statement displays the names of the libraries in the catalog and schema of the current session, which happens to be TRAFODION.SEABASE:</p> <div class="listingblock"> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/sql_reference/integration.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/integration.html b/docs/sql_reference/integration.html index 7f592ef..952a05c 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-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <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="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/sql_reference/issue-tracking.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/issue-tracking.html b/docs/sql_reference/issue-tracking.html index 16847f2..3de6bb9 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-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <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="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/sql_reference/license.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/license.html b/docs/sql_reference/license.html index a352bab..0c39351 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-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <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="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/sql_reference/mail-lists.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/mail-lists.html b/docs/sql_reference/mail-lists.html index 0378eb4..acba955 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-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <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="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/sql_reference/project-info.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/project-info.html b/docs/sql_reference/project-info.html index 62a9f2e..974988e 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-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <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="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/sql_reference/project-summary.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/project-summary.html b/docs/sql_reference/project-summary.html index 8b29d17..b0f333a 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-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <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="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/sql_reference/source-repository.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/source-repository.html b/docs/sql_reference/source-repository.html index fa339ae..6357ac6 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-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <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="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/docs/sql_reference/team-list.html ---------------------------------------------------------------------- diff --git a/docs/sql_reference/team-list.html b/docs/sql_reference/team-list.html index 08f20be..1d1860a 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-06-20 --> +<!-- Generated by Apache Maven Doxia Site Renderer 1.4 at 2018-07-02 --> <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="20180620" /> + <meta name="Date-Revision-yyyymmdd" content="20180702" /> <meta http-equiv="Content-Language" content="en" /> </head> @@ -27,7 +27,7 @@ <div class="xleft"> - <span id="publishDate">Last Published: 2018-06-20</span> + <span id="publishDate">Last Published: 2018-07-02</span> | <span id="projectVersion">Version: 2.3.0</span> </div> <div class="xright"> <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a> http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/fe15ac57/index.html ---------------------------------------------------------------------- diff --git a/index.html b/index.html index 0fff817..14bb35e 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-05-30 + Generated by Apache Maven Doxia at 2018-05-30 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,43 +180,43 @@ <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="Apache_Trafodion_is_now_a_Top_Level_Project">Apache Trafodion is now a Top Level Project!</h5> - <p></p> - <p>Check out 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="Were_working_on_release_2.2">We're working on release 2.2!</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.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>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="Want_to_disucss_Trafodion_in_Chinese_Join_the_Trafodion_discussion_on_Tencent_QQ">Want to disucss 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: 176011868.</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="Apache_Trafodion_is_now_a_Top_Level_Project">Apache Trafodion is now a Top Level Project!</h5> + <p></p> + <p>Check out 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="Were_working_on_release_2.2">We're working on release 2.2!</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.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>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="Want_to_disucss_Trafodion_in_Chinese_Join_the_Trafodion_discussion_on_Tencent_QQ">Want to disucss 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: 176011868.</p> + </div> + </div> + </div></td> + </tr> + </tbody> + </table> <!-- 20160524 GTA Need more logos before using this part. Powered by Trafodion @@ -231,38 +231,38 @@ Contribution opportunites: usage, code, tests, presentations, documentations, we  -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 "Trafodion" (the Welsh word for transactions, pronounced "Tra-vod-eee-on") 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 "Trafodion" (the Welsh word for transactions, pronounced "Tra-vod-eee-on") 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> @@ -271,71 +271,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> @@ -486,12 +486,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 "Trafodion" (the Welsh word for transactions, pronounced - "Tra-vod-eee-on") 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 "Trafodion" (the Welsh word for transactions, pronounced + "Tra-vod-eee-on") 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/fe15ac57/integration.html ---------------------------------------------------------------------- diff --git a/integration.html b/integration.html index bce59f8..6aad93a 100644 --- a/integration.html +++ b/integration.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-06-20 + Generated by Apache Maven Doxia at 2018-07-02 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/fe15ac57/issue-tracking.html ---------------------------------------------------------------------- diff --git a/issue-tracking.html b/issue-tracking.html index 4f59996..37e7abd 100644 --- a/issue-tracking.html +++ b/issue-tracking.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-06-20 + Generated by Apache Maven Doxia at 2018-07-02 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/fe15ac57/license.html ---------------------------------------------------------------------- diff --git a/license.html b/license.html index 3bf681f..57abd42 100644 --- a/license.html +++ b/license.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-06-20 + Generated by Apache Maven Doxia at 2018-07-02 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/fe15ac57/mail-lists.html ---------------------------------------------------------------------- diff --git a/mail-lists.html b/mail-lists.html index 2a9a3d8..e466aa3 100644 --- a/mail-lists.html +++ b/mail-lists.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-06-20 + Generated by Apache Maven Doxia at 2018-07-02 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/fe15ac57/modules.html ---------------------------------------------------------------------- diff --git a/modules.html b/modules.html index 09a1e31..ce9d9cc 100644 --- a/modules.html +++ b/modules.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-06-20 + Generated by Apache Maven Doxia at 2018-07-02 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/fe15ac57/project-info.html ---------------------------------------------------------------------- diff --git a/project-info.html b/project-info.html index 86e67cd..e3c7004 100644 --- a/project-info.html +++ b/project-info.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-06-20 + Generated by Apache Maven Doxia at 2018-07-02 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/fe15ac57/project-summary.html ---------------------------------------------------------------------- diff --git a/project-summary.html b/project-summary.html index 8a0e333..03ef706 100644 --- a/project-summary.html +++ b/project-summary.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-06-20 + Generated by Apache Maven Doxia at 2018-07-02 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/fe15ac57/source-repository.html ---------------------------------------------------------------------- diff --git a/source-repository.html b/source-repository.html index 0536419..2011373 100644 --- a/source-repository.html +++ b/source-repository.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-06-20 + Generated by Apache Maven Doxia at 2018-07-02 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/fe15ac57/team-list.html ---------------------------------------------------------------------- diff --git a/team-list.html b/team-list.html index bb46197..9f629ba 100644 --- a/team-list.html +++ b/team-list.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <!-- - Generated by Apache Maven Doxia at 2018-06-20 + Generated by Apache Maven Doxia at 2018-07-02 Rendered using Reflow Maven Skin 1.1.1 (http://andriusvelykis.github.io/reflow-maven-skin) --> <html xml:lang="en" lang="en">
