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 2016/02/02 23:33:19 UTC

[11/42] incubator-trafodion-site git commit: [TRAFODION-1699] PR 294 Web site now points to Contributors Guide on wiki

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/dcs_reference/xref/org/trafodion/dcs/servermt/serverSql/TrafStatement.html
----------------------------------------------------------------------
diff --git a/docs/dcs_reference/xref/org/trafodion/dcs/servermt/serverSql/TrafStatement.html b/docs/dcs_reference/xref/org/trafodion/dcs/servermt/serverSql/TrafStatement.html
index 3a749ac..f9f3cdd 100644
--- a/docs/dcs_reference/xref/org/trafodion/dcs/servermt/serverSql/TrafStatement.html
+++ b/docs/dcs_reference/xref/org/trafodion/dcs/servermt/serverSql/TrafStatement.html
@@ -129,155 +129,157 @@
 <a class="jxr_linenumber" name="119" href="#119">119</a>         <strong class="jxr_keyword">try</strong> {
 <a class="jxr_linenumber" name="120" href="#120">120</a>             <strong class="jxr_keyword">if</strong> (curKey != 0){
 <a class="jxr_linenumber" name="121" href="#121">121</a>                 resultSetList.get(curKey).closeTResultSet();
-<a class="jxr_linenumber" name="122" href="#122">122</a>              }
-<a class="jxr_linenumber" name="123" href="#123">123</a>         } <strong class="jxr_keyword">catch</strong> (Exception e){}
-<a class="jxr_linenumber" name="124" href="#124">124</a>     }
-<a class="jxr_linenumber" name="125" href="#125">125</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> closeAllTResultSets() {
-<a class="jxr_linenumber" name="126" href="#126">126</a>         <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
-<a class="jxr_linenumber" name="127" href="#127">127</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". closeAllTResultSets resultSetCount : "</span> + resultSetCount);
-<a class="jxr_linenumber" name="128" href="#128">128</a>         <strong class="jxr_keyword">if</strong> (resultSetCount != 0){
-<a class="jxr_linenumber" name="129" href="#129">129</a>             Integer key;
-<a class="jxr_linenumber" name="130" href="#130">130</a>             Iterator&lt;Integer&gt; keySetIterator = resultSetList.keySet().iterator();
-<a class="jxr_linenumber" name="131" href="#131">131</a>             <strong class="jxr_keyword">while</strong> (keySetIterator.hasNext()) {
-<a class="jxr_linenumber" name="132" href="#132">132</a>                 key = keySetIterator.next();
-<a class="jxr_linenumber" name="133" href="#133">133</a>                 resultSetList.get(key).closeTResultSet();
-<a class="jxr_linenumber" name="134" href="#134">134</a>             }
-<a class="jxr_linenumber" name="135" href="#135">135</a>             resultSetList.clear();
-<a class="jxr_linenumber" name="136" href="#136">136</a>         }
-<a class="jxr_linenumber" name="137" href="#137">137</a>         resultSetCount = 0;
-<a class="jxr_linenumber" name="138" href="#138">138</a>         curKey = 0;
-<a class="jxr_linenumber" name="139" href="#139">139</a>     }
-<a class="jxr_linenumber" name="140" href="#140">140</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> getNextTResultSet(){
-<a class="jxr_linenumber" name="141" href="#141">141</a>         <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
-<a class="jxr_linenumber" name="142" href="#142">142</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". getNextTResultSet key :"</span> + (curKey + 1) );
-<a class="jxr_linenumber" name="143" href="#143">143</a>         Integer key = curKey + 1;
-<a class="jxr_linenumber" name="144" href="#144">144</a>         <strong class="jxr_keyword">if</strong> (key &lt;= resultSetCount){
-<a class="jxr_linenumber" name="145" href="#145">145</a>             <strong class="jxr_keyword">if</strong> (resultSetList.containsKey(key)){
-<a class="jxr_linenumber" name="146" href="#146">146</a>                 <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
-<a class="jxr_linenumber" name="147" href="#147">147</a>                     LOG.debug(serverWorkerName + <span class="jxr_string">". getNextTResultSet returns true "</span>);
-<a class="jxr_linenumber" name="148" href="#148">148</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
-<a class="jxr_linenumber" name="149" href="#149">149</a>             }
-<a class="jxr_linenumber" name="150" href="#150">150</a>         }
-<a class="jxr_linenumber" name="151" href="#151">151</a>         <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
-<a class="jxr_linenumber" name="152" href="#152">152</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". getNextTResultSet returns false "</span>);
-<a class="jxr_linenumber" name="153" href="#153">153</a>         <strong class="jxr_keyword">return</strong> false;
-<a class="jxr_linenumber" name="154" href="#154">154</a>     }
-<a class="jxr_linenumber" name="155" href="#155">155</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setFirstTResultSet(){
-<a class="jxr_linenumber" name="156" href="#156">156</a>         <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
-<a class="jxr_linenumber" name="157" href="#157">157</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". setFirstTResultSet"</span>);
-<a class="jxr_linenumber" name="158" href="#158">158</a>         curKey = 1;
-<a class="jxr_linenumber" name="159" href="#159">159</a>     }
-<a class="jxr_linenumber" name="160" href="#160">160</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> addTResultSet(<a href="../../../../../org/trafodion/dcs/servermt/serverSql/TrafResultSet.html">TrafResultSet</a> trs){
-<a class="jxr_linenumber" name="161" href="#161">161</a>         Integer maxKey = 0;
-<a class="jxr_linenumber" name="162" href="#162">162</a>         Integer key = 0;
-<a class="jxr_linenumber" name="163" href="#163">163</a>         Iterator&lt;Integer&gt; keySetIterator = resultSetList.keySet().iterator();
-<a class="jxr_linenumber" name="164" href="#164">164</a>         <strong class="jxr_keyword">while</strong> (keySetIterator.hasNext()) {
-<a class="jxr_linenumber" name="165" href="#165">165</a>             key = keySetIterator.next();
-<a class="jxr_linenumber" name="166" href="#166">166</a>             <strong class="jxr_keyword">if</strong> (key &gt; maxKey) maxKey = key;
-<a class="jxr_linenumber" name="167" href="#167">167</a>         }
-<a class="jxr_linenumber" name="168" href="#168">168</a>         key = maxKey + 1;
-<a class="jxr_linenumber" name="169" href="#169">169</a>         resultSetList.put(key, trs);
-<a class="jxr_linenumber" name="170" href="#170">170</a>         resultSetCount++;
-<a class="jxr_linenumber" name="171" href="#171">171</a>         curKey = 1;
-<a class="jxr_linenumber" name="172" href="#172">172</a>         <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
-<a class="jxr_linenumber" name="173" href="#173">173</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". addTResultSet key :"</span> + key);
-<a class="jxr_linenumber" name="174" href="#174">174</a>     }
-<a class="jxr_linenumber" name="175" href="#175">175</a> <em class="jxr_comment">//=====================================================</em>
-<a class="jxr_linenumber" name="176" href="#176">176</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setOutDescList(<a href="../../../../../org/trafodion/dcs/servermt/serverDriverInputOutput/Descriptor2List.html">Descriptor2List</a> outDescList){
-<a class="jxr_linenumber" name="177" href="#177">177</a>         <strong class="jxr_keyword">this</strong>.outDescList = outDescList;
-<a class="jxr_linenumber" name="178" href="#178">178</a>     }
-<a class="jxr_linenumber" name="179" href="#179">179</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setParamCount(<strong class="jxr_keyword">int</strong> paramCount){
-<a class="jxr_linenumber" name="180" href="#180">180</a>         <strong class="jxr_keyword">this</strong>.paramCount = paramCount;
-<a class="jxr_linenumber" name="181" href="#181">181</a>     }
-<a class="jxr_linenumber" name="182" href="#182">182</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setParamDescList(<a href="../../../../../org/trafodion/dcs/servermt/serverDriverInputOutput/Descriptor2List.html">Descriptor2List</a> paramDescList){
-<a class="jxr_linenumber" name="183" href="#183">183</a>         <strong class="jxr_keyword">this</strong>.paramDescList = paramDescList;
-<a class="jxr_linenumber" name="184" href="#184">184</a>     }
-<a class="jxr_linenumber" name="185" href="#185">185</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setParamLength(<strong class="jxr_keyword">long</strong> paramLength){
-<a class="jxr_linenumber" name="186" href="#186">186</a>         <strong class="jxr_keyword">this</strong>.paramLength = paramLength;
-<a class="jxr_linenumber" name="187" href="#187">187</a>     }
-<a class="jxr_linenumber" name="188" href="#188">188</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setIsResultSet(<strong class="jxr_keyword">boolean</strong> isResultSet){
-<a class="jxr_linenumber" name="189" href="#189">189</a>         <strong class="jxr_keyword">this</strong>.isResultSet = isResultSet;
-<a class="jxr_linenumber" name="190" href="#190">190</a>     }
-<a class="jxr_linenumber" name="191" href="#191">191</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setIsSpj(<strong class="jxr_keyword">boolean</strong> isSpj){
-<a class="jxr_linenumber" name="192" href="#192">192</a>         <strong class="jxr_keyword">this</strong>.isSpj = isSpj;
-<a class="jxr_linenumber" name="193" href="#193">193</a>     }
-<a class="jxr_linenumber" name="194" href="#194">194</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setStatement(Connection conn, String sqlString, <strong class="jxr_keyword">int</strong> sqlStmtType) <strong class="jxr_keyword">throws</strong> SQLException{
-<a class="jxr_linenumber" name="195" href="#195">195</a>         <strong class="jxr_keyword">if</strong>(LOG.isDebugEnabled())
-<a class="jxr_linenumber" name="196" href="#196">196</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". TrafStatement.setStatement ["</span> + stmtLabel + <span class="jxr_string">"]"</span>);
-<a class="jxr_linenumber" name="197" href="#197">197</a>         closeTStatement();
-<a class="jxr_linenumber" name="198" href="#198">198</a>         <strong class="jxr_keyword">this</strong>.sqlStmtType = sqlStmtType;
-<a class="jxr_linenumber" name="199" href="#199">199</a>         <strong class="jxr_keyword">switch</strong> (sqlStmtType){
-<a class="jxr_linenumber" name="200" href="#200">200</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_SELECT:
-<a class="jxr_linenumber" name="201" href="#201">201</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_EXPLAIN:
-<a class="jxr_linenumber" name="202" href="#202">202</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_CATOLOG:
-<a class="jxr_linenumber" name="203" href="#203">203</a>                 isResultSet = <strong class="jxr_keyword">true</strong>;
-<a class="jxr_linenumber" name="204" href="#204">204</a>                 <strong class="jxr_keyword">break</strong>;
-<a class="jxr_linenumber" name="205" href="#205">205</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_CALL:
-<a class="jxr_linenumber" name="206" href="#206">206</a>                 isSpj = <strong class="jxr_keyword">true</strong>;
-<a class="jxr_linenumber" name="207" href="#207">207</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_UPDATE:
-<a class="jxr_linenumber" name="208" href="#208">208</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_DELETE:
-<a class="jxr_linenumber" name="209" href="#209">209</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_INSERT:
-<a class="jxr_linenumber" name="210" href="#210">210</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_INSERT_PARAM:
-<a class="jxr_linenumber" name="211" href="#211">211</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_CREATE:
-<a class="jxr_linenumber" name="212" href="#212">212</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_GRANT:
-<a class="jxr_linenumber" name="213" href="#213">213</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_DROP:
-<a class="jxr_linenumber" name="214" href="#214">214</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_CONTROL:
-<a class="jxr_linenumber" name="215" href="#215">215</a>                 isResultSet = false;
-<a class="jxr_linenumber" name="216" href="#216">216</a>             <strong class="jxr_keyword">default</strong>:
-<a class="jxr_linenumber" name="217" href="#217">217</a>         }
-<a class="jxr_linenumber" name="218" href="#218">218</a>         <strong class="jxr_keyword">if</strong> (sqlString != <strong class="jxr_keyword">null</strong>){
-<a class="jxr_linenumber" name="219" href="#219">219</a>             <strong class="jxr_keyword">if</strong> (isSpj == <strong class="jxr_keyword">true</strong>){
-<a class="jxr_linenumber" name="220" href="#220">220</a>                 stmt = conn.prepareCall(sqlString);
-<a class="jxr_linenumber" name="221" href="#221">221</a>                 <strong class="jxr_keyword">if</strong>(LOG.isDebugEnabled())
-<a class="jxr_linenumber" name="222" href="#222">222</a>                     LOG.debug(serverWorkerName + <span class="jxr_string">". T2 conn.prepareCall ["</span> + stmtLabel + <span class="jxr_string">"] sqlString :"</span> + sqlString);
-<a class="jxr_linenumber" name="223" href="#223">223</a>             }
-<a class="jxr_linenumber" name="224" href="#224">224</a>             <strong class="jxr_keyword">else</strong> {
-<a class="jxr_linenumber" name="225" href="#225">225</a>                 stmt = conn.prepareStatement(sqlString);
-<a class="jxr_linenumber" name="226" href="#226">226</a>                 <strong class="jxr_keyword">if</strong>(LOG.isDebugEnabled())
-<a class="jxr_linenumber" name="227" href="#227">227</a>                     LOG.debug(serverWorkerName + <span class="jxr_string">". T2 conn.prepareStatement ["</span> + stmtLabel + <span class="jxr_string">"] sqlString :"</span> + sqlString);
-<a class="jxr_linenumber" name="228" href="#228">228</a>             }
-<a class="jxr_linenumber" name="229" href="#229">229</a>         }
-<a class="jxr_linenumber" name="230" href="#230">230</a>         <strong class="jxr_keyword">else</strong> {
-<a class="jxr_linenumber" name="231" href="#231">231</a>             <strong class="jxr_keyword">this</strong>.stmt = conn.createStatement();
-<a class="jxr_linenumber" name="232" href="#232">232</a>             <strong class="jxr_keyword">if</strong>(LOG.isDebugEnabled())
-<a class="jxr_linenumber" name="233" href="#233">233</a>                 LOG.debug(serverWorkerName + <span class="jxr_string">". T2 conn.createStatement ["</span> + stmtLabel + <span class="jxr_string">"]"</span>);
-<a class="jxr_linenumber" name="234" href="#234">234</a>         }
-<a class="jxr_linenumber" name="235" href="#235">235</a>     }
-<a class="jxr_linenumber" name="236" href="#236">236</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setSqlStmtType(<strong class="jxr_keyword">int</strong> sqlStmtType){
-<a class="jxr_linenumber" name="237" href="#237">237</a>         <strong class="jxr_keyword">this</strong>.sqlStmtType = sqlStmtType;
-<a class="jxr_linenumber" name="238" href="#238">238</a>     }
-<a class="jxr_linenumber" name="239" href="#239">239</a> <em class="jxr_comment">//================================================</em>
-<a class="jxr_linenumber" name="240" href="#240">240</a>     <strong class="jxr_keyword">public</strong> Object getStatement(){
-<a class="jxr_linenumber" name="241" href="#241">241</a>         <strong class="jxr_keyword">return</strong> stmt;
-<a class="jxr_linenumber" name="242" href="#242">242</a>     }
-<a class="jxr_linenumber" name="243" href="#243">243</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../org/trafodion/dcs/servermt/serverDriverInputOutput/Descriptor2List.html">Descriptor2List</a> getOutDescList(){
-<a class="jxr_linenumber" name="244" href="#244">244</a>         <strong class="jxr_keyword">return</strong> outDescList;
-<a class="jxr_linenumber" name="245" href="#245">245</a>     }
-<a class="jxr_linenumber" name="246" href="#246">246</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../org/trafodion/dcs/servermt/serverDriverInputOutput/Descriptor2List.html">Descriptor2List</a> getParamDescList(){
-<a class="jxr_linenumber" name="247" href="#247">247</a>         <strong class="jxr_keyword">return</strong> paramDescList;
-<a class="jxr_linenumber" name="248" href="#248">248</a>     }
-<a class="jxr_linenumber" name="249" href="#249">249</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getParamCount(){
-<a class="jxr_linenumber" name="250" href="#250">250</a>         <strong class="jxr_keyword">return</strong> paramCount;
-<a class="jxr_linenumber" name="251" href="#251">251</a>     }
-<a class="jxr_linenumber" name="252" href="#252">252</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">long</strong> getParamLength(){
-<a class="jxr_linenumber" name="253" href="#253">253</a>         <strong class="jxr_keyword">return</strong> paramLength;
-<a class="jxr_linenumber" name="254" href="#254">254</a>     }
-<a class="jxr_linenumber" name="255" href="#255">255</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> getIsResultSet(){
-<a class="jxr_linenumber" name="256" href="#256">256</a>         <strong class="jxr_keyword">return</strong> isResultSet;
-<a class="jxr_linenumber" name="257" href="#257">257</a>     }
-<a class="jxr_linenumber" name="258" href="#258">258</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> getIsSpj(){
-<a class="jxr_linenumber" name="259" href="#259">259</a>         <strong class="jxr_keyword">return</strong> isSpj;
-<a class="jxr_linenumber" name="260" href="#260">260</a>     }
-<a class="jxr_linenumber" name="261" href="#261">261</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../org/trafodion/dcs/servermt/serverSql/TrafResultSet.html">TrafResultSet</a> getTrafResultSet(){
-<a class="jxr_linenumber" name="262" href="#262">262</a>         <strong class="jxr_keyword">return</strong> resultSetList.get(curKey);
-<a class="jxr_linenumber" name="263" href="#263">263</a>     }
-<a class="jxr_linenumber" name="264" href="#264">264</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getSqlStmtType(){
-<a class="jxr_linenumber" name="265" href="#265">265</a>         <strong class="jxr_keyword">return</strong> sqlStmtType;
-<a class="jxr_linenumber" name="266" href="#266">266</a>     }
-<a class="jxr_linenumber" name="267" href="#267">267</a>     <strong class="jxr_keyword">public</strong> Integer getStmtHandle(){
-<a class="jxr_linenumber" name="268" href="#268">268</a>         <strong class="jxr_keyword">return</strong> stmtHandle;
-<a class="jxr_linenumber" name="269" href="#269">269</a>     }
-<a class="jxr_linenumber" name="270" href="#270">270</a> }
+<a class="jxr_linenumber" name="122" href="#122">122</a>                 resultSetList.remove(curKey);
+<a class="jxr_linenumber" name="123" href="#123">123</a>              }
+<a class="jxr_linenumber" name="124" href="#124">124</a>         } <strong class="jxr_keyword">catch</strong> (Exception e){}
+<a class="jxr_linenumber" name="125" href="#125">125</a>     }
+<a class="jxr_linenumber" name="126" href="#126">126</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> closeAllTResultSets() {
+<a class="jxr_linenumber" name="127" href="#127">127</a>         <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
+<a class="jxr_linenumber" name="128" href="#128">128</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". closeAllTResultSets resultSetCount : "</span> + resultSetCount);
+<a class="jxr_linenumber" name="129" href="#129">129</a>         <strong class="jxr_keyword">if</strong> (resultSetCount != 0){
+<a class="jxr_linenumber" name="130" href="#130">130</a>             Integer key;
+<a class="jxr_linenumber" name="131" href="#131">131</a>             Iterator&lt;Integer&gt; keySetIterator = resultSetList.keySet().iterator();
+<a class="jxr_linenumber" name="132" href="#132">132</a>             <strong class="jxr_keyword">while</strong> (keySetIterator.hasNext()) {
+<a class="jxr_linenumber" name="133" href="#133">133</a>                 key = keySetIterator.next();
+<a class="jxr_linenumber" name="134" href="#134">134</a>                 resultSetList.get(key).closeTResultSet();
+<a class="jxr_linenumber" name="135" href="#135">135</a>             }
+<a class="jxr_linenumber" name="136" href="#136">136</a>             resultSetList.clear();
+<a class="jxr_linenumber" name="137" href="#137">137</a>         }
+<a class="jxr_linenumber" name="138" href="#138">138</a>         resultSetCount = 0;
+<a class="jxr_linenumber" name="139" href="#139">139</a>         curKey = 0;
+<a class="jxr_linenumber" name="140" href="#140">140</a>     }
+<a class="jxr_linenumber" name="141" href="#141">141</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> getNextTResultSet(){
+<a class="jxr_linenumber" name="142" href="#142">142</a>         <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
+<a class="jxr_linenumber" name="143" href="#143">143</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". getNextTResultSet key :"</span> + (curKey + 1) );
+<a class="jxr_linenumber" name="144" href="#144">144</a>         Integer key = curKey + 1;
+<a class="jxr_linenumber" name="145" href="#145">145</a>         <strong class="jxr_keyword">if</strong> (key &lt;= resultSetCount){
+<a class="jxr_linenumber" name="146" href="#146">146</a>             <strong class="jxr_keyword">if</strong> (resultSetList.containsKey(key)){
+<a class="jxr_linenumber" name="147" href="#147">147</a>                 <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
+<a class="jxr_linenumber" name="148" href="#148">148</a>                     LOG.debug(serverWorkerName + <span class="jxr_string">". getNextTResultSet returns true "</span>);
+<a class="jxr_linenumber" name="149" href="#149">149</a>                 ++curKey;
+<a class="jxr_linenumber" name="150" href="#150">150</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="151" href="#151">151</a>             }
+<a class="jxr_linenumber" name="152" href="#152">152</a>         }
+<a class="jxr_linenumber" name="153" href="#153">153</a>         <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
+<a class="jxr_linenumber" name="154" href="#154">154</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". getNextTResultSet returns false "</span>);
+<a class="jxr_linenumber" name="155" href="#155">155</a>         <strong class="jxr_keyword">return</strong> false;
+<a class="jxr_linenumber" name="156" href="#156">156</a>     }
+<a class="jxr_linenumber" name="157" href="#157">157</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setFirstTResultSet(){
+<a class="jxr_linenumber" name="158" href="#158">158</a>         <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
+<a class="jxr_linenumber" name="159" href="#159">159</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". setFirstTResultSet"</span>);
+<a class="jxr_linenumber" name="160" href="#160">160</a>         curKey = 1;
+<a class="jxr_linenumber" name="161" href="#161">161</a>     }
+<a class="jxr_linenumber" name="162" href="#162">162</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> addTResultSet(<a href="../../../../../org/trafodion/dcs/servermt/serverSql/TrafResultSet.html">TrafResultSet</a> trs){
+<a class="jxr_linenumber" name="163" href="#163">163</a>         Integer maxKey = 0;
+<a class="jxr_linenumber" name="164" href="#164">164</a>         Integer key = 0;
+<a class="jxr_linenumber" name="165" href="#165">165</a>         Iterator&lt;Integer&gt; keySetIterator = resultSetList.keySet().iterator();
+<a class="jxr_linenumber" name="166" href="#166">166</a>         <strong class="jxr_keyword">while</strong> (keySetIterator.hasNext()) {
+<a class="jxr_linenumber" name="167" href="#167">167</a>             key = keySetIterator.next();
+<a class="jxr_linenumber" name="168" href="#168">168</a>             <strong class="jxr_keyword">if</strong> (key &gt; maxKey) maxKey = key;
+<a class="jxr_linenumber" name="169" href="#169">169</a>         }
+<a class="jxr_linenumber" name="170" href="#170">170</a>         key = maxKey + 1;
+<a class="jxr_linenumber" name="171" href="#171">171</a>         resultSetList.put(key, trs);
+<a class="jxr_linenumber" name="172" href="#172">172</a>         resultSetCount++;
+<a class="jxr_linenumber" name="173" href="#173">173</a>         curKey = 1;
+<a class="jxr_linenumber" name="174" href="#174">174</a>         <strong class="jxr_keyword">if</strong> (LOG.isDebugEnabled())
+<a class="jxr_linenumber" name="175" href="#175">175</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". addTResultSet key :"</span> + key);
+<a class="jxr_linenumber" name="176" href="#176">176</a>     }
+<a class="jxr_linenumber" name="177" href="#177">177</a> <em class="jxr_comment">//=====================================================</em>
+<a class="jxr_linenumber" name="178" href="#178">178</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setOutDescList(<a href="../../../../../org/trafodion/dcs/servermt/serverDriverInputOutput/Descriptor2List.html">Descriptor2List</a> outDescList){
+<a class="jxr_linenumber" name="179" href="#179">179</a>         <strong class="jxr_keyword">this</strong>.outDescList = outDescList;
+<a class="jxr_linenumber" name="180" href="#180">180</a>     }
+<a class="jxr_linenumber" name="181" href="#181">181</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setParamCount(<strong class="jxr_keyword">int</strong> paramCount){
+<a class="jxr_linenumber" name="182" href="#182">182</a>         <strong class="jxr_keyword">this</strong>.paramCount = paramCount;
+<a class="jxr_linenumber" name="183" href="#183">183</a>     }
+<a class="jxr_linenumber" name="184" href="#184">184</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setParamDescList(<a href="../../../../../org/trafodion/dcs/servermt/serverDriverInputOutput/Descriptor2List.html">Descriptor2List</a> paramDescList){
+<a class="jxr_linenumber" name="185" href="#185">185</a>         <strong class="jxr_keyword">this</strong>.paramDescList = paramDescList;
+<a class="jxr_linenumber" name="186" href="#186">186</a>     }
+<a class="jxr_linenumber" name="187" href="#187">187</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setParamLength(<strong class="jxr_keyword">long</strong> paramLength){
+<a class="jxr_linenumber" name="188" href="#188">188</a>         <strong class="jxr_keyword">this</strong>.paramLength = paramLength;
+<a class="jxr_linenumber" name="189" href="#189">189</a>     }
+<a class="jxr_linenumber" name="190" href="#190">190</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setIsResultSet(<strong class="jxr_keyword">boolean</strong> isResultSet){
+<a class="jxr_linenumber" name="191" href="#191">191</a>         <strong class="jxr_keyword">this</strong>.isResultSet = isResultSet;
+<a class="jxr_linenumber" name="192" href="#192">192</a>     }
+<a class="jxr_linenumber" name="193" href="#193">193</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setIsSpj(<strong class="jxr_keyword">boolean</strong> isSpj){
+<a class="jxr_linenumber" name="194" href="#194">194</a>         <strong class="jxr_keyword">this</strong>.isSpj = isSpj;
+<a class="jxr_linenumber" name="195" href="#195">195</a>     }
+<a class="jxr_linenumber" name="196" href="#196">196</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setStatement(Connection conn, String sqlString, <strong class="jxr_keyword">int</strong> sqlStmtType) <strong class="jxr_keyword">throws</strong> SQLException{
+<a class="jxr_linenumber" name="197" href="#197">197</a>         <strong class="jxr_keyword">if</strong>(LOG.isDebugEnabled())
+<a class="jxr_linenumber" name="198" href="#198">198</a>             LOG.debug(serverWorkerName + <span class="jxr_string">". TrafStatement.setStatement ["</span> + stmtLabel + <span class="jxr_string">"]"</span>);
+<a class="jxr_linenumber" name="199" href="#199">199</a>         closeTStatement();
+<a class="jxr_linenumber" name="200" href="#200">200</a>         <strong class="jxr_keyword">this</strong>.sqlStmtType = sqlStmtType;
+<a class="jxr_linenumber" name="201" href="#201">201</a>         <strong class="jxr_keyword">switch</strong> (sqlStmtType){
+<a class="jxr_linenumber" name="202" href="#202">202</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_SELECT:
+<a class="jxr_linenumber" name="203" href="#203">203</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_EXPLAIN:
+<a class="jxr_linenumber" name="204" href="#204">204</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_CATOLOG:
+<a class="jxr_linenumber" name="205" href="#205">205</a>                 isResultSet = <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="206" href="#206">206</a>                 <strong class="jxr_keyword">break</strong>;
+<a class="jxr_linenumber" name="207" href="#207">207</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_CALL:
+<a class="jxr_linenumber" name="208" href="#208">208</a>                 isSpj = <strong class="jxr_keyword">true</strong>;
+<a class="jxr_linenumber" name="209" href="#209">209</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_UPDATE:
+<a class="jxr_linenumber" name="210" href="#210">210</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_DELETE:
+<a class="jxr_linenumber" name="211" href="#211">211</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_INSERT:
+<a class="jxr_linenumber" name="212" href="#212">212</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_INSERT_PARAM:
+<a class="jxr_linenumber" name="213" href="#213">213</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_CREATE:
+<a class="jxr_linenumber" name="214" href="#214">214</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_GRANT:
+<a class="jxr_linenumber" name="215" href="#215">215</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_DROP:
+<a class="jxr_linenumber" name="216" href="#216">216</a>             <strong class="jxr_keyword">case</strong> ServerConstants.TYPE_CONTROL:
+<a class="jxr_linenumber" name="217" href="#217">217</a>                 isResultSet = false;
+<a class="jxr_linenumber" name="218" href="#218">218</a>             <strong class="jxr_keyword">default</strong>:
+<a class="jxr_linenumber" name="219" href="#219">219</a>         }
+<a class="jxr_linenumber" name="220" href="#220">220</a>         <strong class="jxr_keyword">if</strong> (sqlString != <strong class="jxr_keyword">null</strong>){
+<a class="jxr_linenumber" name="221" href="#221">221</a>             <strong class="jxr_keyword">if</strong> (isSpj == <strong class="jxr_keyword">true</strong>){
+<a class="jxr_linenumber" name="222" href="#222">222</a>                 stmt = conn.prepareCall(sqlString);
+<a class="jxr_linenumber" name="223" href="#223">223</a>                 <strong class="jxr_keyword">if</strong>(LOG.isDebugEnabled())
+<a class="jxr_linenumber" name="224" href="#224">224</a>                     LOG.debug(serverWorkerName + <span class="jxr_string">". T2 conn.prepareCall ["</span> + stmtLabel + <span class="jxr_string">"] sqlString :"</span> + sqlString);
+<a class="jxr_linenumber" name="225" href="#225">225</a>             }
+<a class="jxr_linenumber" name="226" href="#226">226</a>             <strong class="jxr_keyword">else</strong> {
+<a class="jxr_linenumber" name="227" href="#227">227</a>                 stmt = conn.prepareStatement(sqlString);
+<a class="jxr_linenumber" name="228" href="#228">228</a>                 <strong class="jxr_keyword">if</strong>(LOG.isDebugEnabled())
+<a class="jxr_linenumber" name="229" href="#229">229</a>                     LOG.debug(serverWorkerName + <span class="jxr_string">". T2 conn.prepareStatement ["</span> + stmtLabel + <span class="jxr_string">"] sqlString :"</span> + sqlString);
+<a class="jxr_linenumber" name="230" href="#230">230</a>             }
+<a class="jxr_linenumber" name="231" href="#231">231</a>         }
+<a class="jxr_linenumber" name="232" href="#232">232</a>         <strong class="jxr_keyword">else</strong> {
+<a class="jxr_linenumber" name="233" href="#233">233</a>             <strong class="jxr_keyword">this</strong>.stmt = conn.createStatement();
+<a class="jxr_linenumber" name="234" href="#234">234</a>             <strong class="jxr_keyword">if</strong>(LOG.isDebugEnabled())
+<a class="jxr_linenumber" name="235" href="#235">235</a>                 LOG.debug(serverWorkerName + <span class="jxr_string">". T2 conn.createStatement ["</span> + stmtLabel + <span class="jxr_string">"]"</span>);
+<a class="jxr_linenumber" name="236" href="#236">236</a>         }
+<a class="jxr_linenumber" name="237" href="#237">237</a>     }
+<a class="jxr_linenumber" name="238" href="#238">238</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setSqlStmtType(<strong class="jxr_keyword">int</strong> sqlStmtType){
+<a class="jxr_linenumber" name="239" href="#239">239</a>         <strong class="jxr_keyword">this</strong>.sqlStmtType = sqlStmtType;
+<a class="jxr_linenumber" name="240" href="#240">240</a>     }
+<a class="jxr_linenumber" name="241" href="#241">241</a> <em class="jxr_comment">//================================================</em>
+<a class="jxr_linenumber" name="242" href="#242">242</a>     <strong class="jxr_keyword">public</strong> Object getStatement(){
+<a class="jxr_linenumber" name="243" href="#243">243</a>         <strong class="jxr_keyword">return</strong> stmt;
+<a class="jxr_linenumber" name="244" href="#244">244</a>     }
+<a class="jxr_linenumber" name="245" href="#245">245</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../org/trafodion/dcs/servermt/serverDriverInputOutput/Descriptor2List.html">Descriptor2List</a> getOutDescList(){
+<a class="jxr_linenumber" name="246" href="#246">246</a>         <strong class="jxr_keyword">return</strong> outDescList;
+<a class="jxr_linenumber" name="247" href="#247">247</a>     }
+<a class="jxr_linenumber" name="248" href="#248">248</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../org/trafodion/dcs/servermt/serverDriverInputOutput/Descriptor2List.html">Descriptor2List</a> getParamDescList(){
+<a class="jxr_linenumber" name="249" href="#249">249</a>         <strong class="jxr_keyword">return</strong> paramDescList;
+<a class="jxr_linenumber" name="250" href="#250">250</a>     }
+<a class="jxr_linenumber" name="251" href="#251">251</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getParamCount(){
+<a class="jxr_linenumber" name="252" href="#252">252</a>         <strong class="jxr_keyword">return</strong> paramCount;
+<a class="jxr_linenumber" name="253" href="#253">253</a>     }
+<a class="jxr_linenumber" name="254" href="#254">254</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">long</strong> getParamLength(){
+<a class="jxr_linenumber" name="255" href="#255">255</a>         <strong class="jxr_keyword">return</strong> paramLength;
+<a class="jxr_linenumber" name="256" href="#256">256</a>     }
+<a class="jxr_linenumber" name="257" href="#257">257</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> getIsResultSet(){
+<a class="jxr_linenumber" name="258" href="#258">258</a>         <strong class="jxr_keyword">return</strong> isResultSet;
+<a class="jxr_linenumber" name="259" href="#259">259</a>     }
+<a class="jxr_linenumber" name="260" href="#260">260</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> getIsSpj(){
+<a class="jxr_linenumber" name="261" href="#261">261</a>         <strong class="jxr_keyword">return</strong> isSpj;
+<a class="jxr_linenumber" name="262" href="#262">262</a>     }
+<a class="jxr_linenumber" name="263" href="#263">263</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../org/trafodion/dcs/servermt/serverSql/TrafResultSet.html">TrafResultSet</a> getTrafResultSet(){
+<a class="jxr_linenumber" name="264" href="#264">264</a>         <strong class="jxr_keyword">return</strong> resultSetList.get(curKey);
+<a class="jxr_linenumber" name="265" href="#265">265</a>     }
+<a class="jxr_linenumber" name="266" href="#266">266</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getSqlStmtType(){
+<a class="jxr_linenumber" name="267" href="#267">267</a>         <strong class="jxr_keyword">return</strong> sqlStmtType;
+<a class="jxr_linenumber" name="268" href="#268">268</a>     }
+<a class="jxr_linenumber" name="269" href="#269">269</a>     <strong class="jxr_keyword">public</strong> Integer getStmtHandle(){
+<a class="jxr_linenumber" name="270" href="#270">270</a>         <strong class="jxr_keyword">return</strong> stmtHandle;
+<a class="jxr_linenumber" name="271" href="#271">271</a>     }
+<a class="jxr_linenumber" name="272" href="#272">272</a> }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/install_guide/Trafodion_Install_Guide.pdf
----------------------------------------------------------------------
diff --git a/docs/install_guide/Trafodion_Install_Guide.pdf b/docs/install_guide/Trafodion_Install_Guide.pdf
index 98830b9..85a85b8 100644
--- a/docs/install_guide/Trafodion_Install_Guide.pdf
+++ b/docs/install_guide/Trafodion_Install_Guide.pdf
@@ -5,8 +5,8 @@
 /Author (Version 1.3.0, January 2016)
 /Creator (Asciidoctor PDF 1.5.0.alpha.10, based on Prawn 1.3.0)
 /Producer (Version 1.3.0, January 2016)
-/CreationDate (D:20160127225325+00'00')
-/ModDate (D:20160127225325+00'00')
+/CreationDate (D:20160202221654+00'00')
+/ModDate (D:20160202221654+00'00')
 >>
 endobj
 2 0 obj

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/install_guide/index.html
----------------------------------------------------------------------
diff --git a/docs/install_guide/index.html b/docs/install_guide/index.html
index a012c70..f52fcaf 100644
--- a/docs/install_guide/index.html
+++ b/docs/install_guide/index.html
@@ -1070,7 +1070,7 @@ have Trafodion, HBase, or HDFS servers on them.</p>
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2016-01-25 21:54:53 UTC
+Last updated 2016-01-29 17:42:05 UTC
 </div>
 </div>
 </body>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/install_guide/integration.html
----------------------------------------------------------------------
diff --git a/docs/install_guide/integration.html b/docs/install_guide/integration.html
index 750476a..c345d6c 100644
--- a/docs/install_guide/integration.html
+++ b/docs/install_guide/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 27, 2016 -->
+<!-- Generated by Apache Maven Doxia at Feb 2, 2016 -->
 <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="20160127" />
+    <meta name="Date-Revision-yyyymmdd" content="20160202" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2016-01-27</span>
+        <span id="publishDate">Last Published: 2016-02-02</span>
                   &nbsp;| <span id="projectVersion">Version: 1.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Installation Guide">Trafodion Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/install_guide/issue-tracking.html
----------------------------------------------------------------------
diff --git a/docs/install_guide/issue-tracking.html b/docs/install_guide/issue-tracking.html
index 0c29a36..fe85246 100644
--- a/docs/install_guide/issue-tracking.html
+++ b/docs/install_guide/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 27, 2016 -->
+<!-- Generated by Apache Maven Doxia at Feb 2, 2016 -->
 <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="20160127" />
+    <meta name="Date-Revision-yyyymmdd" content="20160202" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2016-01-27</span>
+        <span id="publishDate">Last Published: 2016-02-02</span>
                   &nbsp;| <span id="projectVersion">Version: 1.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Installation Guide">Trafodion Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/install_guide/license.html
----------------------------------------------------------------------
diff --git a/docs/install_guide/license.html b/docs/install_guide/license.html
index 9f422c5..8c6f3ab 100644
--- a/docs/install_guide/license.html
+++ b/docs/install_guide/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 27, 2016 -->
+<!-- Generated by Apache Maven Doxia at Feb 2, 2016 -->
 <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="20160127" />
+    <meta name="Date-Revision-yyyymmdd" content="20160202" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2016-01-27</span>
+        <span id="publishDate">Last Published: 2016-02-02</span>
                   &nbsp;| <span id="projectVersion">Version: 1.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Installation Guide">Trafodion Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/install_guide/mail-lists.html
----------------------------------------------------------------------
diff --git a/docs/install_guide/mail-lists.html b/docs/install_guide/mail-lists.html
index 4f305d4..1a3c9af 100644
--- a/docs/install_guide/mail-lists.html
+++ b/docs/install_guide/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 27, 2016 -->
+<!-- Generated by Apache Maven Doxia at Feb 2, 2016 -->
 <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="20160127" />
+    <meta name="Date-Revision-yyyymmdd" content="20160202" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2016-01-27</span>
+        <span id="publishDate">Last Published: 2016-02-02</span>
                   &nbsp;| <span id="projectVersion">Version: 1.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Installation Guide">Trafodion Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/install_guide/project-info.html
----------------------------------------------------------------------
diff --git a/docs/install_guide/project-info.html b/docs/install_guide/project-info.html
index f549cf2..3ac6644 100644
--- a/docs/install_guide/project-info.html
+++ b/docs/install_guide/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 27, 2016 -->
+<!-- Generated by Apache Maven Doxia at Feb 2, 2016 -->
 <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="20160127" />
+    <meta name="Date-Revision-yyyymmdd" content="20160202" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2016-01-27</span>
+        <span id="publishDate">Last Published: 2016-02-02</span>
                   &nbsp;| <span id="projectVersion">Version: 1.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Installation Guide">Trafodion Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/install_guide/project-summary.html
----------------------------------------------------------------------
diff --git a/docs/install_guide/project-summary.html b/docs/install_guide/project-summary.html
index f8f101d..9c9ec28 100644
--- a/docs/install_guide/project-summary.html
+++ b/docs/install_guide/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 27, 2016 -->
+<!-- Generated by Apache Maven Doxia at Feb 2, 2016 -->
 <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="20160127" />
+    <meta name="Date-Revision-yyyymmdd" content="20160202" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2016-01-27</span>
+        <span id="publishDate">Last Published: 2016-02-02</span>
                   &nbsp;| <span id="projectVersion">Version: 1.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Installation Guide">Trafodion Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/install_guide/source-repository.html
----------------------------------------------------------------------
diff --git a/docs/install_guide/source-repository.html b/docs/install_guide/source-repository.html
index 8e36ae0..2185a8c 100644
--- a/docs/install_guide/source-repository.html
+++ b/docs/install_guide/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 27, 2016 -->
+<!-- Generated by Apache Maven Doxia at Feb 2, 2016 -->
 <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="20160127" />
+    <meta name="Date-Revision-yyyymmdd" content="20160202" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2016-01-27</span>
+        <span id="publishDate">Last Published: 2016-02-02</span>
                   &nbsp;| <span id="projectVersion">Version: 1.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Installation Guide">Trafodion Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/install_guide/team-list.html
----------------------------------------------------------------------
diff --git a/docs/install_guide/team-list.html b/docs/install_guide/team-list.html
index c63fe7a..4bc8e9d 100644
--- a/docs/install_guide/team-list.html
+++ b/docs/install_guide/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 27, 2016 -->
+<!-- Generated by Apache Maven Doxia at Feb 2, 2016 -->
 <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="20160127" />
+    <meta name="Date-Revision-yyyymmdd" content="20160202" />
     <meta http-equiv="Content-Language" content="en" />
         
         </head>
@@ -27,7 +27,7 @@
             
         
                 <div class="xleft">
-        <span id="publishDate">Last Published: 2016-01-27</span>
+        <span id="publishDate">Last Published: 2016-02-02</span>
                   &nbsp;| <span id="projectVersion">Version: 1.3.0</span>
                       </div>
             <div class="xright">                    <a href="./" title="Trafodion Installation Guide">Trafodion Installation Guide</a>

http://git-wip-us.apache.org/repos/asf/incubator-trafodion-site/blob/984ef15b/docs/messages_guide/index.html
----------------------------------------------------------------------
diff --git a/docs/messages_guide/index.html b/docs/messages_guide/index.html
index 3254a36..1f7e31f 100644
--- a/docs/messages_guide/index.html
+++ b/docs/messages_guide/index.html
@@ -3372,7 +3372,7 @@ and resubmit.</p>
 <h3 id="SQL-1112">3.82. SQL 1112</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">An index column list cannot consist only of the systemgenerated column SYSKEY.</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">An index column list cannot consist only of the system-generated column SYSKEY.</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -3448,7 +3448,7 @@ statement. For information about file system errors, see <a href="#file_system_e
 <h3 id="SQL-1116">3.85. SQL 1116</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">The current partitioning scheme requires a userspecified clustering key on object &lt;table-name&gt;.</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">The current partitioning scheme requires a user-specified clustering key on object &lt;table-name&gt;.</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -3641,7 +3641,7 @@ The float data value might not be evaluated consistently to the same
 value each time.</p>
 </div>
 <div class="paragraph">
-<p><strong>Recovery:</strong> Do not use float datatypes in the partitioning key of a
+<p><strong>Recovery:</strong> Do not use float data types in the partitioning key of a
 partitionable table.</p>
 </div>
 </div>
@@ -3805,7 +3805,7 @@ the primary key.</p>
 </div>
 <div class="paragraph">
 <p><strong>Cause:</strong> You attempted to create a check constraint that references a
-systemgenerated column. The column named SYSKEY is often
+system-generated column. The column named SYSKEY is often
 system-generated.</p>
 </div>
 <div class="paragraph">
@@ -3813,7 +3813,7 @@ system-generated.</p>
 </div>
 <div class="paragraph">
 <p><strong>Recovery:</strong> Modify the statement so that no check constraints reference
-any systemgenerated column and resubmit.</p>
+any system-generated column and resubmit.</p>
 </div>
 </div>
 <div class="sect2">
@@ -4121,7 +4121,7 @@ the Partition Overlay Support feature was not enabled.</p>
 partitions was created.</p>
 </div>
 <div class="paragraph">
-<p><strong>Recovery:</strong> None if a nonpartitioned table is requested. To request a
+<p><strong>Recovery:</strong> None if a non-partitioned table is requested. To request a
 partitioned table, delete the table, verify that disk volumes are
 available, and resubmit. You can also specify the volume names where the
 partitions need to be created for the given CREATE TABLE through
@@ -4781,10 +4781,8 @@ ISO88591 in a HEADING clause.</p>
 <pre class="CodeRay highlight"><code data-lang="text">The character set for string literals in CONSTRAINT must be ISO88591.</code></pre>
 </div>
 </div>
-<div class="listingblock">
-<div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">se.* You specified a literal with a character set other than</code></pre>
-</div>
+<div class="paragraph">
+<p><strong>Cause:</strong> You specified a literal with a character set other than</p>
 </div>
 <div class="paragraph">
 <p>ISO88591 in the text of a constraint.</p>
@@ -5319,7 +5317,7 @@ DDL or utility operation.</p>
 <h3 id="SQL-1301">3.165. SQL 1301</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">NO ACTION referential action for &lt;referential-triggered-action&gt; clause is not yet supported as specified by ANSI SQL99 standard. To alter the behavior, set an appropriate value for the REF_CONSTRAINT_NO_ACTION_LIKE_RESTRICT default.</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">NO ACTION referential action for &lt;referential-triggered-action&gt; clause is not yet supported as specified by ANSI SQL-99 standard. To alter the behavior, set an appropriate value for the REF_CONSTRAINT_NO_ACTION_LIKE_RESTRICT default.</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -7480,18 +7478,18 @@ greater than zero.</p>
 <h3 id="SQL-3004">5.4. SQL 3004</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">A delimited identifier must contain at least one nonblank character.</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">A delimited identifier must contain at least one non-blank character.</code></pre>
 </div>
 </div>
 <div class="paragraph">
 <p><strong>Cause:</strong> You defined a delimited identifier as blanks. You must enter at
-least one nonblank character.</p>
+least one non-blank character.</p>
 </div>
 <div class="paragraph">
 <p><strong>Effect:</strong> The operation fails.</p>
 </div>
 <div class="paragraph">
-<p><strong>Recovery:</strong> Enter at least one nonblank character and resubmit.</p>
+<p><strong>Recovery:</strong> Enter at least one non-blank character and resubmit.</p>
 </div>
 <div style="page-break-after: always;"></div>
 </div>
@@ -9819,7 +9817,7 @@ which is not supported.</p>
 <h3 id="SQL-3136">5.130. SQL 3136</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">Only LEFT, RIGHT, and FULL OUTER JOIN are valid in \{oj . . .}</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">Only LEFT, RIGHT, and FULL OUTER JOIN are valid in {oj . . .}</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -11227,7 +11225,7 @@ operation as a table reference.</p>
 <h3 id="SQL-3220">5.202. SQL 3220</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">SHOWDDL failed for object &lt;object-name&gt; because an SQL/MP display option was used on a SQL/MX object.</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">SHOWDDL failed for object &lt;object-name&gt; because an SQL/MP display option was used on a Trafodion object.</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -11250,7 +11248,7 @@ object.</p>
 <h3 id="SQL-3225">5.203. SQL 3225</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">SHOWLABEL failed for object &lt;object-name&gt;. The object does not exist in the given namespace &lt;name-space&gt;, the object is not accessible, or the object type is not supported. SHOWLABEL supports only SQL/MX tables, views and indexes.</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">SHOWLABEL failed for object &lt;object-name&gt;. The object does not exist in the given namespace &lt;name-space&gt;, the object is not accessible, or the object type is not supported. SHOWLABEL supports only Trafodion tables, views and indexes.</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -11277,7 +11275,7 @@ namespace of a valid, supported, and accessible object.</p>
 <h3 id="SQL-3226">5.204. SQL 3226</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">SHOWLABEL failed for physical location name &lt;location-name&gt;. Object does not exist or object type is not supported. SHOWLABEL supports only SQL/MX tables, views, and indexes.</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">SHOWLABEL failed for physical location name &lt;location-name&gt;. Object does not exist or object type is not supported. SHOWLABEL supports only Trafodion tables, views, and indexes.</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -11300,7 +11298,7 @@ argument.</p>
 <h3 id="SQL-3228">5.205. SQL 3228</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">SHOWLABEL failed for physical location name &lt;location-name&gt;. SHOWLABEL supports only the data forks of SQL/MX tables, views, and indexes.</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">SHOWLABEL failed for physical location name &lt;location-name&gt;. SHOWLABEL supports only the data forks of Trafodion tables, views, and indexes.</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -11645,7 +11643,7 @@ performing.</p>
 </div>
 <div class="paragraph">
 <p>This message appears when the user has not updated statistics for column
-&lt;names&gt; and when the rowcount in table &lt;name&gt; is more than the value of
+&lt;names&gt; and when the row count in table &lt;name&gt; is more than the value of
 the defaults table constant HIST_ROWCOUNT_REQUIRING_STATS. If you want
 to suppress this message, set that value to a very large number, and you
 will see this message only for tables with more rows than that, and for
@@ -11671,7 +11669,7 @@ which there are no updated statistics.</p>
 </div>
 <div class="paragraph">
 <p>This message appears when the user has not updated statistics for column
-&lt;name&gt; and when the rowcount in the table is more than the value of the
+&lt;name&gt; and when the ROWCOUNT in the table is more than the value of the
 defaults table constant HIST_ROWCOUNT_REQUIRING_STATS. If you want to
 suppress this message, set that value to a very large number, and you
 will see this message only for tables with more rows than that, and for
@@ -11772,7 +11770,7 @@ predicate.</p>
 <h3 id="SQL-8012">8.3. SQL 8012</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">8012 Encoding of CONTROL QUERY DEFAULTs: &lt;encoding&gt;.</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">Encoding of CONTROL QUERY DEFAULTs: &lt;encoding&gt;.</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -12566,10 +12564,8 @@ rather than by Trafodion.</p>
 <p><strong>Effect:</strong> The operation fails.</p>
 </div>
 <div class="paragraph">
-<p><strong>Recovery:</strong> Commit or abort the transaction by calling SQL COMMIT or</p>
-</div>
-<div class="paragraph">
-<p>ROLLBACKWORK.</p>
+<p><strong>Recovery:</strong> Commit or abort the transaction by calling SQL COMMIT or
+ROLLBACKWORK.</p>
 </div>
 </div>
 <div class="sect2">
@@ -12885,7 +12881,7 @@ attempt was made to contact a nonexistent Trafodion UDR server.</p>
 <h3 id="SQL-8904">8.57. SQL 8904</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">SQL/MX did not receive a reply from MXUDR, possibly caused by internal errors while executing user-defined routines.</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">Trafodion did not receive a reply from MXUDR, possibly caused by internal errors while executing user-defined routines.</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -13232,7 +13228,7 @@ not correct the problem, report the entire message to <a href="mailto:user@trafo
 </div>
 <div class="paragraph">
 <p><strong>Recovery:</strong> Make sure there are appropriate disks with enough space for
-scratch file use. Disks such as optical disks, phantom disks, and SMS
+scratch file use. Disks such as optical disks, phantom disks, and
 virtual disks are not considered suitable. See the
 <a href="http://trafodion.incubator.apache.org/docs/sql_reference/index.html"><em>Trafodion SQL Reference Manual</em></a>
 for more information on how to influence the placement of scratch files.</p>
@@ -13331,7 +13327,7 @@ Contact the <a href="mailto:user@trafodion.incubator.apache.org">Trafodion User
 <h3 id="SQL-10019-">9.23. SQL 10019</h3>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="text">Sort failed while calling FILENAME_FILENEXT_ with error $0~int0.</code></pre>
+<pre class="CodeRay highlight"><code data-lang="text">Sort failed while calling FILENAME_FILENEXT_ with error &lt;number&gt;.</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -13676,7 +13672,7 @@ text or the SQLCODE value in addition to the SQLSTATE.</p>
 </li>
 <li>
 <p>In the future, the Trafodion error handling might use a different error path, and therefore return a
-slightly different SQLCODE and implementationdefined SQLSTATE value for an error.</p>
+slightly different SQLCODE and implementation defined SQLSTATE value for an error.</p>
 </li>
 </ul>
 </div>
@@ -14318,7 +14314,7 @@ numbers) and error messages (negative SQLCODE numbers).</p>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0153Y</pre></div></td>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>1142</pre></div></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Attempting to add a column with a NULL, UNIQUE, CHECK, PRIMARY KEY, or FOREIGN KEY constraint defined. This is not supported for a nonaudited table.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Attempting to add a column with a NULL, UNIQUE, CHECK, PRIMARY KEY, or FOREIGN KEY constraint defined. This is not supported for a non-audited table.</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0153Z</pre></div></td>
@@ -14538,7 +14534,7 @@ numbers) and error messages (negative SQLCODE numbers).</p>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0160R</pre></div></td>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>2027</pre></div></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">error &lt;num&gt; while sending a startup message to process &lt;name&gt;.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Error &lt;num&gt; while sending a startup message to process &lt;name&gt;.</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0160S</pre></div></td>
@@ -24282,7 +24278,7 @@ contact the <a href="mailto:user@trafodion.incubator.apache.org">Trafodion User
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0090</pre></div></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">The transaction was aborted by the system because its parent process died, a server using the transaction failed, or a message to a server using the transaction was cancelled.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">The transaction was aborted by the system because its parent process died, a server using the transaction failed, or a message to a server using the transaction was canceled.</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0091</pre></div></td>
@@ -24446,7 +24442,7 @@ contact the <a href="mailto:user@trafodion.incubator.apache.org">Trafodion User
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0152</pre></div></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Unusual end-tape unit went offline.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Unusual end-tape unit went off-line.</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0153</pre></div></td>
@@ -24806,7 +24802,7 @@ contact the <a href="mailto:user@trafodion.incubator.apache.org">Trafodion User
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0533</pre></div></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">An internal sequential I/O error occured.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">An internal sequential I/O error occurred.</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0534</pre></div></td>
@@ -24918,7 +24914,7 @@ contact the <a href="mailto:user@trafodion.incubator.apache.org">Trafodion User
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0593</pre></div></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">The request was cancelled.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">The request was canceled.</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>0594</pre></div></td>
@@ -25626,7 +25622,7 @@ contact the <a href="mailto:user@trafodion.incubator.apache.org">Trafodion User
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>4104</pre></div></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Socket operation on nonsocket.</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Socket operation on non socket.</p></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div class="literal"><pre>4105</pre></div></td>
@@ -25867,7 +25863,7 @@ contact the <a href="mailto:user@trafodion.incubator.apache.org">Trafodion User
 </div>
 <div id="footer">
 <div id="footer-text">
-Last updated 2016-01-25 21:54:53 UTC
+Last updated 2016-01-29 17:42:05 UTC
 </div>
 </div>
 <script>