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/01/26 23:46:49 UTC

[14/28] trafodion-site git commit: Merge PR 1411 and 1415 into docs and web site

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4f19d4f4/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 4f823b2..ec92234 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 bba4753..7f8aa77 100644
--- a/docs/2.3.0/sql_reference/index.html
+++ b/docs/2.3.0/sql_reference/index.html
@@ -17389,6 +17389,86 @@ corresponding column in the target <em>table</em>. See
 <div class="ulist">
 <ul>
 <li>
+<p>This UPSERT statement inserts 1,000,000 rows from <em>source_table</em> into <em>target_table</em>.</p>
+<div class="paragraph">
+<p>Suppose that we have following tables:</p>
+</div>
+<div class="paragraph">
+<p><em>source_table</em>:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="text">SQL&gt;SELECT COUNT(*) FROM source_table;
+
+(EXPR)
+--------------------
+             1000000
+
+--- 1 row(s) selected.</code></pre>
+</div>
+</div>
+<div class="paragraph">
+<p><em>target_table</em>:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="text">SQL&gt;CREATE TABLE target_table
+  (
+    ID                               INT NO DEFAULT NOT NULL NOT DROPPABLE NOT
+      SERIALIZED
+  , NUM                              INT DEFAULT NULL NOT SERIALIZED
+  , CARD_ID                          LARGEINT DEFAULT NULL NOT SERIALIZED
+  , PRICE                            DECIMAL(11, 3) DEFAULT NULL NOT SERIALIZED
+  , START_DATE                       DATE DEFAULT NULL NOT SERIALIZED
+  , START_TIME                       TIME(0) DEFAULT NULL NOT SERIALIZED
+  , END_TIME                         TIMESTAMP(6) DEFAULT NULL NOT SERIALIZED
+  , B_YEAR                           INTERVAL YEAR(10) DEFAULT NULL NOT
+      SERIALIZED
+  , B_YM                             INTERVAL YEAR(5) TO MONTH DEFAULT NULL NOT
+      SERIALIZED
+  , B_DS                             INTERVAL DAY(10) TO SECOND(3) DEFAULT NULL
+      NOT SERIALIZED
+  , PRIMARY KEY (ID ASC)
+  )
+  SALT USING 9 PARTITIONS
+ATTRIBUTES ALIGNED FORMAT NAMESPACE 'TRAF_1500000'
+  HBASE_OPTIONS
+  (
+    MEMSTORE_FLUSH_SIZE = '1073741824'
+  )
+;</code></pre>
+</div>
+</div>
+<div class="paragraph">
+<p>It takes approximately 10 seconds to finish loading 1,000,000 rows.</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="text">SQL&gt;SET STATISTICS ON;
+
+SQL&gt;UPSERT USING LOAD INTO target_table SELECT * FROM source_table;
+--- 1000000 row(s) inserted.
+
+Start Time             2018/01/18 11:38:02.739433
+End Time               2018/01/18 11:48:25.822903
+Elapsed Time                      00:10:23.083470
+Compile Time                      00:00:00.381337
+Execution Time                    00:10:22.700870</code></pre>
+</div>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="CodeRay highlight"><code data-lang="text">SQL&gt;SELECT COUNT(*) FROM target_table;
+
+(EXPR)
+--------------------
+             1000000
+
+--- 1 row(s) selected.</code></pre>
+</div>
+</div>
+</li>
+<li>
 <p>This UPSERT statement either inserts or updates the part number and
 price in the PARTS table using the part number and unit price from the
 ODETAIL table where the part number is 244:</p>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4f19d4f4/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 65dbf73..6a7ecd9 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 a1d037b..d5c6a0d 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 0ddf9c0..3f35fcc 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 a3ffa13..7355611 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 1aab7ed..608438f 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 48a02c9..21328a6 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 5878729..21c9047 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 a650f3d..acf84de 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 83a5c41..e6a1e6b 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/4f19d4f4/docs/client_install/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/client_install/dependencies.html b/docs/client_install/dependencies.html
index cefa63b..db60b2b 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/client_install/integration.html
----------------------------------------------------------------------
diff --git a/docs/client_install/integration.html b/docs/client_install/integration.html
index a652e0a..6100fe2 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/client_install/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/client_install/issue-tracking.html b/docs/client_install/issue-tracking.html
index f095bf0..e15bb28 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/client_install/license.html
----------------------------------------------------------------------
diff --git a/docs/client_install/license.html b/docs/client_install/license.html
index 7f89332..c949c29 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/client_install/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/client_install/mail-lists.html b/docs/client_install/mail-lists.html
index d516d29..9574d9b 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/client_install/project-info.html
----------------------------------------------------------------------
diff --git a/docs/client_install/project-info.html b/docs/client_install/project-info.html
index b728370..1d15149 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/client_install/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/client_install/project-summary.html b/docs/client_install/project-summary.html
index 46bc084..043fc1b 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/client_install/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/client_install/source-repository.html b/docs/client_install/source-repository.html
index f02375a..2c295ca 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/client_install/team-list.html
----------------------------------------------------------------------
diff --git a/docs/client_install/team-list.html b/docs/client_install/team-list.html
index aa5a39d..d594880 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 6f61a6a..5258231 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/4f19d4f4/docs/command_interface/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/dependencies.html b/docs/command_interface/dependencies.html
index fe41b14..ceb5258 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/command_interface/integration.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/integration.html b/docs/command_interface/integration.html
index a0f0ef9..2c7564a 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/command_interface/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/issue-tracking.html b/docs/command_interface/issue-tracking.html
index f7aa362..e87509e 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/command_interface/license.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/license.html b/docs/command_interface/license.html
index 8a4597f..f01629d 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/command_interface/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/mail-lists.html b/docs/command_interface/mail-lists.html
index 069c0e6..2d6d959 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/command_interface/project-info.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/project-info.html b/docs/command_interface/project-info.html
index a34bc93..67e3357 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/command_interface/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/project-summary.html b/docs/command_interface/project-summary.html
index 687275e..44603b1 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/command_interface/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/source-repository.html b/docs/command_interface/source-repository.html
index 75a89fa..9a560b6 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/command_interface/team-list.html
----------------------------------------------------------------------
diff --git a/docs/command_interface/team-list.html b/docs/command_interface/team-list.html
index 8edb237..74fcd6d 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 66e3dab..1b35f9f 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/4f19d4f4/docs/cqd_reference/dependencies.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/dependencies.html b/docs/cqd_reference/dependencies.html
index a27742e..f6aab3a 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/cqd_reference/integration.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/integration.html b/docs/cqd_reference/integration.html
index 4882855..eb2b554 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/cqd_reference/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/issue-tracking.html b/docs/cqd_reference/issue-tracking.html
index d9c9a5f..50fc2fb 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/cqd_reference/license.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/license.html b/docs/cqd_reference/license.html
index 257bcdc..3be6f66 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/cqd_reference/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/mail-lists.html b/docs/cqd_reference/mail-lists.html
index 097555b..64019b1 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/cqd_reference/project-info.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/project-info.html b/docs/cqd_reference/project-info.html
index 4e71b46..bacb9ec 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/cqd_reference/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/project-summary.html b/docs/cqd_reference/project-summary.html
index 1d4de3b..9143c82 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/cqd_reference/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/source-repository.html b/docs/cqd_reference/source-repository.html
index 1c87f57..7582d3b 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/docs/cqd_reference/team-list.html
----------------------------------------------------------------------
diff --git a/docs/cqd_reference/team-list.html b/docs/cqd_reference/team-list.html
index 71c7188..fb91518 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 Jan 18, 2018 -->
+<!-- Generated by Apache Maven Doxia at Jan 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="20180118" />
+    <meta name="Date-Revision-yyyymmdd" content="20180126" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2018-01-18</span>
+        <span id="publishDate">Last Published: 2018-01-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/4f19d4f4/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 ff4fcc8..7f0b9a4 100644
--- a/docs/dcs_reference/apidocs/allclasses-frame.html
+++ b/docs/dcs_reference/apidocs/allclasses-frame.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_91) on Thu Jan 18 18:51:47 UTC 2018 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Fri Jan 26 23:25:54 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-01-18">
+<meta name="date" content="2018-01-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/4f19d4f4/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 a26308f..dd8838f 100644
--- a/docs/dcs_reference/apidocs/allclasses-noframe.html
+++ b/docs/dcs_reference/apidocs/allclasses-noframe.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_91) on Thu Jan 18 18:51:47 UTC 2018 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Fri Jan 26 23:25:54 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-01-18">
+<meta name="date" content="2018-01-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/4f19d4f4/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 2de3fcb..cd9f623 100644
--- a/docs/dcs_reference/apidocs/constant-values.html
+++ b/docs/dcs_reference/apidocs/constant-values.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_91) on Thu Jan 18 18:51:47 UTC 2018 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Fri Jan 26 23:25:53 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-01-18">
+<meta name="date" content="2018-01-26">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>
@@ -344,6 +344,20 @@
 <td class="colLast"><code>"dcs.server.listener.selector.timeout"</code></td>
 </tr>
 <tr class="rowColor">
+<td class="colFirst"><a name="org.trafodion.dcs.Constants.DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
+<td><code><a href="org/trafodion/dcs/Constants.html#DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS</a></code></td>
+<td class="colLast"><code>"dcs.server.startup.mxosrvr.user.program.restart.handler.attempts"</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a name="org.trafodion.dcs.Constants.DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
+<td><code><a href="org/trafodion/dcs/Constants.html#DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES</a></code></td>
+<td class="colLast"><code>"dcs.server.startup.mxosrvr.user.program.restart.handler.retry.timeout.minutes"</code></td>
+</tr>
+<tr class="rowColor">
 <td class="colFirst"><a name="org.trafodion.dcs.Constants.DCS_SERVER_USER_PROGRAM">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
@@ -610,6 +624,20 @@
 <td class="colLast"><code>40030</code></td>
 </tr>
 <tr class="rowColor">
+<td class="colFirst"><a name="org.trafodion.dcs.Constants.DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
+<td><code><a href="org/trafodion/dcs/Constants.html#DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS</a></code></td>
+<td class="colLast"><code>6</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a name="org.trafodion.dcs.Constants.DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
+<td><code><a href="org/trafodion/dcs/Constants.html#DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES</a></code></td>
+<td class="colLast"><code>6</code></td>
+</tr>
+<tr class="rowColor">
 <td class="colFirst"><a name="org.trafodion.dcs.Constants.DEFAULT_DCS_SERVER_USER_PROGRAM">
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;boolean</code></td>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4f19d4f4/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 691236a..4311f07 100644
--- a/docs/dcs_reference/apidocs/deprecated-list.html
+++ b/docs/dcs_reference/apidocs/deprecated-list.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_91) on Thu Jan 18 18:51:47 UTC 2018 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Fri Jan 26 23:25:53 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-01-18">
+<meta name="date" content="2018-01-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/4f19d4f4/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 c2a6d61..0890496 100644
--- a/docs/dcs_reference/apidocs/help-doc.html
+++ b/docs/dcs_reference/apidocs/help-doc.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_91) on Thu Jan 18 18:51:47 UTC 2018 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Fri Jan 26 23:25:54 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-01-18">
+<meta name="date" content="2018-01-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/4f19d4f4/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 18aac49..2d35ab2 100644
--- a/docs/dcs_reference/apidocs/index-all.html
+++ b/docs/dcs_reference/apidocs/index-all.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_91) on Thu Jan 18 18:51:47 UTC 2018 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Fri Jan 26 23:25:53 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-01-18">
+<meta name="date" content="2018-01-26">
 <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
 </head>
 <body>
@@ -319,6 +319,8 @@
 <dd>&nbsp;</dd>
 <dt><span class="strong"><a href="./org/trafodion/dcs/util/RetryCounterFactory.html#create(int,%20int)">create(int, int)</a></span> - Static method in class org.trafodion.dcs.util.<a href="./org/trafodion/dcs/util/RetryCounterFactory.html" title="class in org.trafodion.dcs.util">RetryCounterFactory</a></dt>
 <dd>&nbsp;</dd>
+<dt><span class="strong"><a href="./org/trafodion/dcs/util/RetryCounterFactory.html#create(int,%20int,%20java.util.concurrent.TimeUnit)">create(int, int, TimeUnit)</a></span> - Static method in class org.trafodion.dcs.util.<a href="./org/trafodion/dcs/util/RetryCounterFactory.html" title="class in org.trafodion.dcs.util">RetryCounterFactory</a></dt>
+<dd>&nbsp;</dd>
 <dt><span class="strong"><a href="./org/trafodion/dcs/zookeeper/ZkClient.html#create(java.lang.String,%20java.lang.String,%20boolean)">create(String, String, boolean)</a></span> - Method in class org.trafodion.dcs.zookeeper.<a href="./org/trafodion/dcs/zookeeper/ZkClient.html" title="class in org.trafodion.dcs.zookeeper">ZkClient</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="strong"><a href="./org/trafodion/dcs/zookeeper/ZkClient.html#create(java.lang.String,%20byte[],%20java.util.List,%20org.apache.zookeeper.CreateMode)">create(String, byte[], List&lt;ACL&gt;, CreateMode)</a></span> - Method in class org.trafodion.dcs.zookeeper.<a href="./org/trafodion/dcs/zookeeper/ZkClient.html" title="class in org.trafodion.dcs.zookeeper">ZkClient</a></dt>
@@ -492,6 +494,14 @@
 <dd>
 <div class="block">Configuration key for server Listener selector timeout</div>
 </dd>
+<dt><span class="strong"><a href="./org/trafodion/dcs/Constants.html#DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS</a></span> - Static variable in class org.trafodion.dcs.<a href="./org/trafodion/dcs/Constants.html" title="class in org.trafodion.dcs">Constants</a></dt>
+<dd>
+<div class="block">Configuration key for user program restart handler attempts for mxosrvr</div>
+</dd>
+<dt><span class="strong"><a href="./org/trafodion/dcs/Constants.html#DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES</a></span> - Static variable in class org.trafodion.dcs.<a href="./org/trafodion/dcs/Constants.html" title="class in org.trafodion.dcs">Constants</a></dt>
+<dd>
+<div class="block">Configuration key for user program restart handler retry timeout minutes</div>
+</dd>
 <dt><span class="strong"><a href="./org/trafodion/dcs/Constants.html#DCS_SERVER_USER_PROGRAM">DCS_SERVER_USER_PROGRAM</a></span> - Static variable in class org.trafodion.dcs.<a href="./org/trafodion/dcs/Constants.html" title="class in org.trafodion.dcs">Constants</a></dt>
 <dd>
 <div class="block">User program feature is enabled</div>
@@ -738,6 +748,14 @@
 <dd>
 <div class="block">Default value for DCS server info port</div>
 </dd>
+<dt><span class="strong"><a href="./org/trafodion/dcs/Constants.html#DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS</a></span> - Static variable in class org.trafodion.dcs.<a href="./org/trafodion/dcs/Constants.html" title="class in org.trafodion.dcs">Constants</a></dt>
+<dd>
+<div class="block">Default value for user program restart handler attempts for mxosrvr</div>
+</dd>
+<dt><span class="strong"><a href="./org/trafodion/dcs/Constants.html#DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES</a></span> - Static variable in class org.trafodion.dcs.<a href="./org/trafodion/dcs/Constants.html" title="class in org.trafodion.dcs">Constants</a></dt>
+<dd>
+<div class="block">Default value for user program restart handler retry timeout minutes for mxosrvr</div>
+</dd>
 <dt><span class="strong"><a href="./org/trafodion/dcs/Constants.html#DEFAULT_DCS_SERVER_USER_PROGRAM">DEFAULT_DCS_SERVER_USER_PROGRAM</a></span> - Static variable in class org.trafodion.dcs.<a href="./org/trafodion/dcs/Constants.html" title="class in org.trafodion.dcs">Constants</a></dt>
 <dd>
 <div class="block">Default value for DcsServer user program feature</div>
@@ -3032,6 +3050,8 @@
 <dd>&nbsp;</dd>
 <dt><span class="strong"><a href="./org/trafodion/dcs/util/RetryCounter.html#shouldRetry()">shouldRetry()</a></span> - Method in class org.trafodion.dcs.util.<a href="./org/trafodion/dcs/util/RetryCounter.html" title="class in org.trafodion.dcs.util">RetryCounter</a></dt>
 <dd>&nbsp;</dd>
+<dt><span class="strong"><a href="./org/trafodion/dcs/util/RetryCounter.html#shouldRetryInnerMinutes()">shouldRetryInnerMinutes()</a></span> - Method in class org.trafodion.dcs.util.<a href="./org/trafodion/dcs/util/RetryCounter.html" title="class in org.trafodion.dcs.util">RetryCounter</a></dt>
+<dd>&nbsp;</dd>
 <dt><span class="strong"><a href="./org/trafodion/dcs/servermt/ServerConstants.html#SIGNATURE">SIGNATURE</a></span> - Static variable in class org.trafodion.dcs.servermt.<a href="./org/trafodion/dcs/servermt/ServerConstants.html" title="class in org.trafodion.dcs.servermt">ServerConstants</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="strong"><a href="./org/trafodion/dcs/servermt/serverDriverInputOutput/Header.html#sizeOf()">sizeOf()</a></span> - Static method in class org.trafodion.dcs.servermt.serverDriverInputOutput.<a href="./org/trafodion/dcs/servermt/serverDriverInputOutput/Header.html" title="class in org.trafodion.dcs.servermt.serverDriverInputOutput">Header</a></dt>
@@ -4050,7 +4070,7 @@
 </dd>
 <dt><span class="strong"><a href="./org/trafodion/dcs/Constants.html#ZOOKEEPER_QUORUM">ZOOKEEPER_QUORUM</a></span> - Static variable in class org.trafodion.dcs.<a href="./org/trafodion/dcs/Constants.html" title="class in org.trafodion.dcs">Constants</a></dt>
 <dd>
-<div class="block">Name of ZooKeeper quorum configuration parameter.</div>
+<div class="block">Name of6ZooKeeper quorum configuration parameter.</div>
 </dd>
 <dt><span class="strong"><a href="./org/trafodion/dcs/Constants.html#ZOOKEEPER_RECOVERABLE_WAITTIME">ZOOKEEPER_RECOVERABLE_WAITTIME</a></span> - Static variable in class org.trafodion.dcs.<a href="./org/trafodion/dcs/Constants.html" title="class in org.trafodion.dcs">Constants</a></dt>
 <dd>

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4f19d4f4/docs/dcs_reference/apidocs/index.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/index.html b/docs/dcs_reference/apidocs/index.html
index f6a0d38..1305982 100644
--- a/docs/dcs_reference/apidocs/index.html
+++ b/docs/dcs_reference/apidocs/index.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc on Thu Jan 18 18:51:47 UTC 2018 -->
+<!-- Generated by javadoc on Fri Jan 26 23:25:54 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">

http://git-wip-us.apache.org/repos/asf/trafodion-site/blob/4f19d4f4/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html b/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html
index 7b41ba1..4d78cef 100644
--- a/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html
+++ b/docs/dcs_reference/apidocs/org/trafodion/dcs/Constants.html
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_91) on Thu Jan 18 18:51:45 UTC 2018 -->
+<!-- Generated by javadoc (version 1.7.0_91) on Fri Jan 26 23:25:49 UTC 2018 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>Constants (Trafodion Database Connectivity Services 2.3.0 API)</title>
-<meta name="date" content="2018-01-18">
+<meta name="date" content="2018-01-26">
 <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
 </head>
 <body>
@@ -343,6 +343,18 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
+<td class="colLast"><code><strong><a href="../../../org/trafodion/dcs/Constants.html#DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS</a></strong></code>
+<div class="block">Configuration key for user program restart handler attempts for mxosrvr</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
+<td class="colLast"><code><strong><a href="../../../org/trafodion/dcs/Constants.html#DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES</a></strong></code>
+<div class="block">Configuration key for user program restart handler retry timeout minutes</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
 <td class="colLast"><code><strong><a href="../../../org/trafodion/dcs/Constants.html#DCS_SERVER_USER_PROGRAM">DCS_SERVER_USER_PROGRAM</a></strong></code>
 <div class="block">User program feature is enabled</div>
 </td>
@@ -572,6 +584,18 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 </td>
 </tr>
 <tr class="rowColor">
+<td class="colFirst"><code>static int</code></td>
+<td class="colLast"><code><strong><a href="../../../org/trafodion/dcs/Constants.html#DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS</a></strong></code>
+<div class="block">Default value for user program restart handler attempts for mxosrvr</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static int</code></td>
+<td class="colLast"><code><strong><a href="../../../org/trafodion/dcs/Constants.html#DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES</a></strong></code>
+<div class="block">Default value for user program restart handler retry timeout minutes for mxosrvr</div>
+</td>
+</tr>
+<tr class="rowColor">
 <td class="colFirst"><code>static boolean</code></td>
 <td class="colLast"><code><strong><a href="../../../org/trafodion/dcs/Constants.html#DEFAULT_DCS_SERVER_USER_PROGRAM">DEFAULT_DCS_SERVER_USER_PROGRAM</a></strong></code>
 <div class="block">Default value for DcsServer user program feature</div>
@@ -1053,7 +1077,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <tr class="rowColor">
 <td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
 <td class="colLast"><code><strong><a href="../../../org/trafodion/dcs/Constants.html#ZOOKEEPER_QUORUM">ZOOKEEPER_QUORUM</a></strong></code>
-<div class="block">Name of ZooKeeper quorum configuration parameter.</div>
+<div class="block">Name of6ZooKeeper quorum configuration parameter.</div>
 </td>
 </tr>
 <tr class="altColor">
@@ -1665,6 +1689,50 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.trafodion.dcs.Constants.DEFAULT_DCS_SERVER_USER_PROGRAM_RESTART_HANDLER_RETRY_INTERVAL_MILLIS">Constant Field Values</a></dd></dl>
 </li>
 </ul>
+<a name="DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS</h4>
+<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS</pre>
+<div class="block">Configuration key for user program restart handler attempts for mxosrvr</div>
+<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.trafodion.dcs.Constants.DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">Constant Field Values</a></dd></dl>
+</li>
+</ul>
+<a name="DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS</h4>
+<pre>public static final&nbsp;int DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS</pre>
+<div class="block">Default value for user program restart handler attempts for mxosrvr</div>
+<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.trafodion.dcs.Constants.DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_ATTEMPTS">Constant Field Values</a></dd></dl>
+</li>
+</ul>
+<a name="DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES</h4>
+<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES</pre>
+<div class="block">Configuration key for user program restart handler retry timeout minutes</div>
+<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.trafodion.dcs.Constants.DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">Constant Field Values</a></dd></dl>
+</li>
+</ul>
+<a name="DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES</h4>
+<pre>public static final&nbsp;int DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES</pre>
+<div class="block">Default value for user program restart handler retry timeout minutes for mxosrvr</div>
+<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.trafodion.dcs.Constants.DEFAULT_DCS_SERVER_STARTUP_MXOSRVR_USER_PROGRAM_RESTART_HANDLER_RETRY_TIMEOUT_MINUTES">Constant Field Values</a></dd></dl>
+</li>
+</ul>
 <a name="ZOOKEEPER_QUORUM">
 <!--   -->
 </a>
@@ -1672,7 +1740,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <li class="blockList">
 <h4>ZOOKEEPER_QUORUM</h4>
 <pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> ZOOKEEPER_QUORUM</pre>
-<div class="block">Name of ZooKeeper quorum configuration parameter.</div>
+<div class="block">Name of6ZooKeeper quorum configuration parameter.</div>
 <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.trafodion.dcs.Constants.ZOOKEEPER_QUORUM">Constant Field Values</a></dd></dl>
 </li>
 </ul>