You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafodion.apache.org by db...@apache.org on 2018/03/26 15:46:54 UTC

[10/20] trafodion-site git commit: Merge [TRAFODION-3001] PR 1486

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/2.3.0/sql_reference/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/dependencies.html b/docs/2.3.0/sql_reference/dependencies.html
index 05d2261..285f9f2 100644
--- a/docs/2.3.0/sql_reference/dependencies.html
+++ b/docs/2.3.0/sql_reference/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/2.3.0/sql_reference/index.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/index.html b/docs/2.3.0/sql_reference/index.html
index a31a1bf..e381a9f 100644
--- a/docs/2.3.0/sql_reference/index.html
+++ b/docs/2.3.0/sql_reference/index.html
@@ -30050,172 +30050,224 @@ character set.</p></td>
 return a result of datetime data type:</p>
 </div>
 <table class="tableblock frame-all grid-all spread">
+<caption class="title">Table 7-3 Overview of DATETIME Functions</caption>
 <colgroup>
 <col style="width: 25%;">
-<col style="width: 75%;">
+<col style="width: 50%;">
+<col style="width: 25%;">
 </colgroup>
 <tbody>
 <tr>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Name</strong></p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Description</strong></p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><strong>Return Data Type</strong></p></td>
+</tr>
+<tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#add_months_function">ADD_MONTHS Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Adds the integer number of months specified by <em>intr_expr</em>
 to <em>datetime_expr</em> and normalizes the result.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">DATE</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#converttimestamp_function">CONVERTTIMESTAMP Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Converts a Julian timestamp to a TIMESTAMP value.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">TIMESTAMP</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#current_function">CURRENT Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Returns the current timestamp. You can also use the
 <a href="#current_timestamp_function">CURRENT_TIMESTAMP Function</a>.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">TIMESTAMP</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#current_date_function">CURRENT_DATE Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Returns the current date.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">DATE</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#current_time_function">CURRENT_TIME Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Returns the current time.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">TIME</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#current_timestamp_function">CURRENT_TIMESTAMP Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Returns the current timestamp. You can also use the <a href="#current_function">CURRENT Function</a>.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">TIMESTAMP</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#date_add_function">DATE_ADD Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Adds the interval specified by <em>interval_expression</em>
 to <em>datetime_expr</em>.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">DATE</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#date_part_function_of_an_interval">DATE_PART Function (of an Interval)</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Extracts the datetime field specified by <em>text</em> from the interval value
-specified by interval and returns the result as an exact numeric value.</p></td>
+specified by interval and returns the result as an exact numeric.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">NUMERIC</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#date_part_function_of_a_timestamp">DATE_PART Function (of a Timestamp)</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Extracts the datetime field specified by <em>text</em> from the datetime value
-specified by timestamp and returns the result as an exact numeric value.</p></td>
+specified by timestamp and returns the result as an exact numeric.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">NUMERIC</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#date_sub_function">DATE_SUB Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Subtracts the specified <em>interval_expression</em> from
 <em>datetime_expr.</em></p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">DATE or TIMESTAMP</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#date_trunc_function">DATE_TRUNC Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Returns the date with the time portion of the day truncated.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">TIMESTAMP</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#dateadd_function">DATEADD Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Adds the interval specified by <em>datepart</em> and <em>num_expr</em>
 to <em>datetime_expr</em>.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">DATE or TIMESTAMP</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#datediff_function">DATEDIFF Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns the integer value for the number of <em>datepart</em> units of time
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns the integer for the number of <em>datepart</em> units of time
 between <em>startdate</em> and <em>enddate</em>.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#dateformat_function">DATEFORMAT Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Formats a datetime value for display purposes.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">CHAR</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#day_function">DAY Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer value in the range 1 through 31 that represents the
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer in the range 1 through 31 that represents the
 corresponding day of the month. You can also use DAYOFMONTH.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER (from 1 to 31)</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#dayname_function">DAYNAME Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Returns the name of the day of the week from a date or timestamp
 expression.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">CHAR</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#dayofmonth_function">DAYOFMONTH Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer value in the range 1 through 31 that represents the
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer in the range 1 through 31 that represents the
 corresponding day of the month. You can also use DAY.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER (from 1 to 31)</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#dayofweek_function">DAYOFWEEK Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer value in the range 1 through 7 that represents the
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer in the range 1 through 7 that represents the
 corresponding day of the week.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER (from 1 to 7)</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#dayofyear_function">DAYOFYEAR Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer value in the range 1 through 366 that represents the
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer in the range 1 through 366 that represents the
 corresponding day of the year.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER (from 1 to 366)</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#extract_function">EXTRACT Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Returns a specified datetime field from a datetime value expression or
 an interval value expression.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">NUMERIC</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#hour_function">HOUR Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer value in the range 0 through 23 that represents the
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer in the range 0 through 23 that represents the
 corresponding hour of the day.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER (from 0 to 23)</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#juliantimestamp_function">JULIANTIMESTAMP Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Converts a datetime value to a Julian timestamp.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">TIMESTAMP</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#minute_function">MINUTE Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer value in the range 0 through 59 that represents the
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer in the range 0 through 59 that represents the
 corresponding minute of the hour.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER (from 0 to 59)</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#month_function">MONTH Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer value in the range 1 through 12 that represents the
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer in the range 1 through 12 that represents the
 corresponding month of the year.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER (from 1 to 12)</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#monthname_function">MONTHNAME Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Returns a character literal that is the name of the month of the year
 (January, February, and so on).</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">CHAR</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#quarter_function">QUARTER Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer value in the range 1 through 4 that represents the
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer in the range 1 through 4 that represents the
 corresponding quarter of the year.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER (from 1 to 4)</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#second_function">SECOND Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer value in the range 0 through 59 that represents the
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer in the range 0 through 59 that represents the
 corresponding second of the minute.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER (from 0 to 59)</p></td>
+</tr>
+<tr>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#sysdate_function">SYSDATE Function</a></p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Retrieves the current date of the server rather than the session.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">DATE</p></td>
+</tr>
+<tr>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#systimestamp_function">SYSTIMESTAMP Function</a></p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Retrieves the current date and time (including fractional seconds with six-digit precision) of the server rather than the session.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">TIMESTAMP</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#timestampadd_function">TIMESTAMPADD Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Adds the interval of time specified by <em>interval-ind</em> and
 <em>num_expr</em> to <em>datetime_expr</em>.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">DATE or TIMESTAMP</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#timestampdiff_function">TIMESTAMPDIFF Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns the integer value for the number of <em>interval-ind_units of time between _startdate</em> and <em>enddate</em>.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns the integer for the number of <em>interval-ind_units of time between _startdate</em> and <em>enddate</em>.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#to_char_function">TO_CHAR Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Converts a datetime value to a character value.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">CHAR</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#to_date_function">TO_DATE Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Converts a character value to a date or timestamp value.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">DATE or TIMESTAMP</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#to_time_function">TO_TIME Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Converts a character value to a time value.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">TIME</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#to_timestamp_function">TO_TIMESTAMP Function</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Converts a character value to a timestamp value.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">TIMESTAMP</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#week_function">WEEK Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer value in the range 1 through 54 that represents the
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer in the range 1 through 54 that represents the
 corresponding week of the year.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER (from 1 to 54)</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#year_function">YEAR Function</a></p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer value that represents the year.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Returns an integer that represents the year.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">INTEGER</p></td>
 </tr>
 </tbody>
 </table>
@@ -33380,7 +33432,7 @@ returned. See <a href="#datetime_value_expressions">Datetime Value Expressions</
 <div class="sect2">
 <h3 id="datediff_function">7.39. DATEDIFF Function</h3>
 <div class="paragraph">
-<p>The DATEDIFF function returns the integer value for the number of
+<p>The DATEDIFF function returns the integer for the number of
 <em>datepart</em> units of time between <em>startdate</em> and <em>enddate</em>.</p>
 </div>
 <div class="paragraph">
@@ -34156,9 +34208,6 @@ TIMESTAMP. See <a href="#datetime_value_expressions">Datetime Value Expressions<
 <p>Return the name of the day of the week from the start date column in the
 project table:</p>
 </div>
-<div class="paragraph">
-<p>+</p>
-</div>
 <div class="listingblock">
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="text">SELECT start_date, ship_timestamp, DAYNAME(start_date)
@@ -34177,7 +34226,7 @@ Start/Date Time/Shipped               (EXPR)
 <h3 id="dayofmonth_function">7.45. DAYOFMONTH Function</h3>
 <div class="paragraph">
 <p>The DAYOFMONTH function converts a DATE or TIMESTAMP expression into an
-INTEGER value in the range 1 through 31 that represents the
+INTEGER in the range 1 through 31 that represents the
 corresponding day of the month. The result returned by the DAYOFMONTH
 function is equal to the result returned by the DAY function.</p>
 </div>
@@ -34228,7 +34277,7 @@ Start/Date Time/Shipped               (EXPR)
 <h3 id="dayofweek_function">7.46. DAYOFWEEK Function</h3>
 <div class="paragraph">
 <p>The DAYOFWEEK function converts a DATE or TIMESTAMP expression into an
-INTEGER value in the range 1 through 7 that represents the corresponding
+INTEGER in the range 1 through 7 that represents the corresponding
 day of the week. The value 1 represents Sunday, 2 represents Monday, and
 so forth.</p>
 </div>
@@ -34282,7 +34331,7 @@ Start/Date Time/Shipped               (EXPR)
 <h3 id="dayofyear_function">7.47. DAYOFYEAR Function</h3>
 <div class="paragraph">
 <p>The DAYOFYEAR function converts a DATE or TIMESTAMP expression into an
-INTEGER value in the range 1 through 366 that represents the
+INTEGER in the range 1 through 366 that represents the
 corresponding day of the year.</p>
 </div>
 <div class="paragraph">
@@ -35689,7 +35738,7 @@ tom              91 77 43</code></pre>
 <h3 id="hour_function">7.60. HOUR Function</h3>
 <div class="paragraph">
 <p>The HOUR function converts a TIME or TIMESTAMP expression into an
-INTEGER value in the range 0 through 23 that represents the
+INTEGER in the range 0 through 23 that represents the
 corresponding hour of the day.</p>
 </div>
 <div class="paragraph">
@@ -36955,7 +37004,7 @@ MIN (PARTCOST * QTY_ORDERED)</code></pre>
 <h3 id="minute_function">7.77. MINUTE Function</h3>
 <div class="paragraph">
 <p>The MINUTE function converts a TIME or TIMESTAMP expression into an
-INTEGER value, in the range 0 through 59, that represents the
+INTEGER, in the range 0 through 59, that represents the
 corresponding minute of the hour.</p>
 </div>
 <div class="paragraph">
@@ -41749,7 +41798,7 @@ returned.</p>
 <div class="sect2">
 <h3 id="timestampdiff_function">7.128. TIMESTAMPDIFF Function</h3>
 <div class="paragraph">
-<p>The TIMESTAMPDIFF function returns the integer value for the number of
+<p>The TIMESTAMPDIFF function returns the integer for the number of
 <em>interval-ind</em> units of time between <em>startdate</em> and <em>enddate</em>. If
 <em>enddate</em> precedes <em>startdate</em>, the return value is negative or zero.</p>
 </div>
@@ -43046,7 +43095,7 @@ Start/Date Time/Shipped               (EXPR)
 <h3 id="year_function">7.139. YEAR Function</h3>
 <div class="paragraph">
 <p>The YEAR function converts a DATE or TIMESTAMP expression into an
-INTEGER value that represents the year.</p>
+INTEGER that represents the year.</p>
 </div>
 <div class="paragraph">
 <p>YEAR is a Trafodion SQL extension.</p>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/2.3.0/sql_reference/integration.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/integration.html b/docs/2.3.0/sql_reference/integration.html
index f5c28da..535eaa5 100644
--- a/docs/2.3.0/sql_reference/integration.html
+++ b/docs/2.3.0/sql_reference/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/2.3.0/sql_reference/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/issue-tracking.html b/docs/2.3.0/sql_reference/issue-tracking.html
index 4f3a706..ecc6044 100644
--- a/docs/2.3.0/sql_reference/issue-tracking.html
+++ b/docs/2.3.0/sql_reference/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/2.3.0/sql_reference/license.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/license.html b/docs/2.3.0/sql_reference/license.html
index ccce9a4..57de15d 100644
--- a/docs/2.3.0/sql_reference/license.html
+++ b/docs/2.3.0/sql_reference/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/2.3.0/sql_reference/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/mail-lists.html b/docs/2.3.0/sql_reference/mail-lists.html
index eafdeaf..f147cfe 100644
--- a/docs/2.3.0/sql_reference/mail-lists.html
+++ b/docs/2.3.0/sql_reference/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/2.3.0/sql_reference/project-info.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/project-info.html b/docs/2.3.0/sql_reference/project-info.html
index 03e7ca7..58907b9 100644
--- a/docs/2.3.0/sql_reference/project-info.html
+++ b/docs/2.3.0/sql_reference/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/2.3.0/sql_reference/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/project-summary.html b/docs/2.3.0/sql_reference/project-summary.html
index 86d005b..d0746b1 100644
--- a/docs/2.3.0/sql_reference/project-summary.html
+++ b/docs/2.3.0/sql_reference/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/2.3.0/sql_reference/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/source-repository.html b/docs/2.3.0/sql_reference/source-repository.html
index 4633693..229d60d 100644
--- a/docs/2.3.0/sql_reference/source-repository.html
+++ b/docs/2.3.0/sql_reference/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/2.3.0/sql_reference/team-list.html
----------------------------------------------------------------------
diff --git a/docs/2.3.0/sql_reference/team-list.html b/docs/2.3.0/sql_reference/team-list.html
index 30ed386..85c20bd 100644
--- a/docs/2.3.0/sql_reference/team-list.html
+++ b/docs/2.3.0/sql_reference/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion SQL Reference Manual">Trafodion SQL Reference Manual</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/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 445b7b8..0943b3e 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/26dd83d0/docs/client_install/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/client_install/dependencies.html b/docs/client_install/dependencies.html
index 9bc334b..3c7912c 100644
--- a/docs/client_install/dependencies.html
+++ b/docs/client_install/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/client_install/integration.html
----------------------------------------------------------------------
diff --git a/docs/client_install/integration.html b/docs/client_install/integration.html
index 0e8cc1a..1461fb6 100644
--- a/docs/client_install/integration.html
+++ b/docs/client_install/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/client_install/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/client_install/issue-tracking.html b/docs/client_install/issue-tracking.html
index c31a87a..caad090 100644
--- a/docs/client_install/issue-tracking.html
+++ b/docs/client_install/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/client_install/license.html
----------------------------------------------------------------------
diff --git a/docs/client_install/license.html b/docs/client_install/license.html
index 177626f..45d02a0 100644
--- a/docs/client_install/license.html
+++ b/docs/client_install/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/client_install/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/client_install/mail-lists.html b/docs/client_install/mail-lists.html
index 8170558..832bba2 100644
--- a/docs/client_install/mail-lists.html
+++ b/docs/client_install/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/client_install/project-info.html
----------------------------------------------------------------------
diff --git a/docs/client_install/project-info.html b/docs/client_install/project-info.html
index 7411882..c8b2ea8 100644
--- a/docs/client_install/project-info.html
+++ b/docs/client_install/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/client_install/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/client_install/project-summary.html b/docs/client_install/project-summary.html
index 116057a..527f132 100644
--- a/docs/client_install/project-summary.html
+++ b/docs/client_install/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/client_install/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/client_install/source-repository.html b/docs/client_install/source-repository.html
index cbcdac8..d56be6f 100644
--- a/docs/client_install/source-repository.html
+++ b/docs/client_install/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/client_install/team-list.html
----------------------------------------------------------------------
diff --git a/docs/client_install/team-list.html b/docs/client_install/team-list.html
index 69a1982..d39423d 100644
--- a/docs/client_install/team-list.html
+++ b/docs/client_install/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Client Installation Guide">Trafodion Client Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/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 be56545..34d40a0 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/26dd83d0/docs/command_interface/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/dependencies.html b/docs/command_interface/dependencies.html
index b98dc20..58bf0aa 100644
--- a/docs/command_interface/dependencies.html
+++ b/docs/command_interface/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/command_interface/integration.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/integration.html b/docs/command_interface/integration.html
index 8a9cbf8..a083b90 100644
--- a/docs/command_interface/integration.html
+++ b/docs/command_interface/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/command_interface/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/issue-tracking.html b/docs/command_interface/issue-tracking.html
index 006b528..70b65f4 100644
--- a/docs/command_interface/issue-tracking.html
+++ b/docs/command_interface/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/command_interface/license.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/license.html b/docs/command_interface/license.html
index 7b1222e..501acf1 100644
--- a/docs/command_interface/license.html
+++ b/docs/command_interface/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/command_interface/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/mail-lists.html b/docs/command_interface/mail-lists.html
index bda6125..e764ad0 100644
--- a/docs/command_interface/mail-lists.html
+++ b/docs/command_interface/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/command_interface/project-info.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/project-info.html b/docs/command_interface/project-info.html
index c9eff96..5f052b7 100644
--- a/docs/command_interface/project-info.html
+++ b/docs/command_interface/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/command_interface/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/project-summary.html b/docs/command_interface/project-summary.html
index 14e0995..0a43339 100644
--- a/docs/command_interface/project-summary.html
+++ b/docs/command_interface/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/command_interface/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/source-repository.html b/docs/command_interface/source-repository.html
index c2fd6e4..7c9ee0b 100644
--- a/docs/command_interface/source-repository.html
+++ b/docs/command_interface/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/command_interface/team-list.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/team-list.html b/docs/command_interface/team-list.html
index 1864e22..ea16aab 100644
--- a/docs/command_interface/team-list.html
+++ b/docs/command_interface/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Command Interface Guide">Trafodion Command Interface Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/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 4039436..5d7d367 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/26dd83d0/docs/cqd_reference/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/dependencies.html b/docs/cqd_reference/dependencies.html
index 241f403..d5c9586 100644
--- a/docs/cqd_reference/dependencies.html
+++ b/docs/cqd_reference/dependencies.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/cqd_reference/integration.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/integration.html b/docs/cqd_reference/integration.html
index 386887d..b0a51c3 100644
--- a/docs/cqd_reference/integration.html
+++ b/docs/cqd_reference/integration.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/cqd_reference/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/issue-tracking.html b/docs/cqd_reference/issue-tracking.html
index e39eac2..9a903fc 100644
--- a/docs/cqd_reference/issue-tracking.html
+++ b/docs/cqd_reference/issue-tracking.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/cqd_reference/license.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/license.html b/docs/cqd_reference/license.html
index 0dc0fc1..d68bf0b 100644
--- a/docs/cqd_reference/license.html
+++ b/docs/cqd_reference/license.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/cqd_reference/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/mail-lists.html b/docs/cqd_reference/mail-lists.html
index 76ca29c..de05cd0 100644
--- a/docs/cqd_reference/mail-lists.html
+++ b/docs/cqd_reference/mail-lists.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/cqd_reference/project-info.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/project-info.html b/docs/cqd_reference/project-info.html
index 9a482ed..2c58b44 100644
--- a/docs/cqd_reference/project-info.html
+++ b/docs/cqd_reference/project-info.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/cqd_reference/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/project-summary.html b/docs/cqd_reference/project-summary.html
index 1341ad1..14929d5 100644
--- a/docs/cqd_reference/project-summary.html
+++ b/docs/cqd_reference/project-summary.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/cqd_reference/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/source-repository.html b/docs/cqd_reference/source-repository.html
index 313e655..8b26341 100644
--- a/docs/cqd_reference/source-repository.html
+++ b/docs/cqd_reference/source-repository.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/cqd_reference/team-list.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/team-list.html b/docs/cqd_reference/team-list.html
index af31097..8572ac4 100644
--- a/docs/cqd_reference/team-list.html
+++ b/docs/cqd_reference/team-list.html
@@ -1,5 +1,5 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- Generated by Apache Maven Doxia at Mar 20, 2018 -->
+<!-- Generated by Apache Maven Doxia at Mar 26, 2018 -->
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
   <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
@@ -10,7 +10,7 @@
       @import url("./css/site.css");
     </style>
     <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" />
-    <meta name="Date-Revision-yyyymmdd" content="20180320" />
+    <meta name="Date-Revision-yyyymmdd" content="20180326" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-03-20</span>
+        <span id="publishDate">Last Published: 2018-03-26</span>
                   &nbsp;| <span id="projectVersion">Version: 2.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion CQD Reference Guide">Trafodion CQD Reference Guide</a>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/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 5e5460f..3ef48a1 100644
--- a/docs/dcs_reference/apidocs/allclasses-frame.html
+++ b/docs/dcs_reference/apidocs/allclasses-frame.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 2018 -->
+<!-- Generated by javadoc (1.7.0_161) on Mon Mar 26 15:25:18 UTC 2018 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>All Classes (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-03-20">
+<meta name="date" content="2018-03-26">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/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 bf0d7a1..905afd8 100644
--- a/docs/dcs_reference/apidocs/allclasses-noframe.html
+++ b/docs/dcs_reference/apidocs/allclasses-noframe.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 2018 -->
+<!-- Generated by javadoc (1.7.0_161) on Mon Mar 26 15:25:18 UTC 2018 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>All Classes (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-03-20">
+<meta name="date" content="2018-03-26">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/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 feb61a3..f139dcb 100644
--- a/docs/dcs_reference/apidocs/constant-values.html
+++ b/docs/dcs_reference/apidocs/constant-values.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:51 UTC 2018 -->
+<!-- Generated by javadoc (1.7.0_161) on Mon Mar 26 15:25:17 UTC 2018 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Constant Field Values (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-03-20">
+<meta name="date" content="2018-03-26">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/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 4ba72ec..5d5919a 100644
--- a/docs/dcs_reference/apidocs/deprecated-list.html
+++ b/docs/dcs_reference/apidocs/deprecated-list.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 2018 -->
+<!-- Generated by javadoc (1.7.0_161) on Mon Mar 26 15:25:18 UTC 2018 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Deprecated List (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-03-20">
+<meta name="date" content="2018-03-26">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/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 e36ad98..54d3eff 100644
--- a/docs/dcs_reference/apidocs/help-doc.html
+++ b/docs/dcs_reference/apidocs/help-doc.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 2018 -->
+<!-- Generated by javadoc (1.7.0_161) on Mon Mar 26 15:25:18 UTC 2018 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>API Help (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-03-20">
+<meta name="date" content="2018-03-26">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/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 7b042b5..1513df1 100644
--- a/docs/dcs_reference/apidocs/index-all.html
+++ b/docs/dcs_reference/apidocs/index-all.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 2018 -->
+<!-- Generated by javadoc (1.7.0_161) on Mon Mar 26 15:25:18 UTC 2018 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Index (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-03-20">
+<meta name="date" content="2018-03-26">
 <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/26dd83d0/docs/dcs_reference/apidocs/index.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/index.html b/docs/dcs_reference/apidocs/index.html
index fb6b54e..87ca9e2 100644
--- a/docs/dcs_reference/apidocs/index.html
+++ b/docs/dcs_reference/apidocs/index.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.7.0_161) on Tue Mar 20 00:39:52 UTC 2018 -->
+<!-- Generated by javadoc (1.7.0_161) on Mon Mar 26 15:25:18 UTC 2018 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Trafodion Database Connectivity Services 2.3.0 API</title>
 <script type="text/javascript">