Index: trunk/docs/FAQ.html
===================================================================
--- trunk/docs/FAQ.html	(revision 18)
+++ trunk/docs/FAQ.html	(revision 19)
@@ -129,5 +129,5 @@
 <br><center><h2>Rainer Wichmann</h2></center>
 <hr>
-<p><i>FAQ Revised: Saturday 17 September 2005 09:10:07</i></p>
+<p><i>FAQ Revised: Tuesday 31 January 2006 21:28:35</i></p>
 <hr><h2>Table of Contents</h2>
 <dl>
@@ -149,4 +149,5 @@
 <li><a href="#Build and install6">2.7. --enable-xml-log has no effect</a></li>
 <li><a href="#Build and install7">2.8. ./install-sh: strip: not found (Solaris)</a></li>
+<li><a href="#Build and install8">2.9. What is sh_tiger1.s?</a></li>
 </ul></dd>
 <dt><b>3. File checking</b></dt>
@@ -208,4 +209,5 @@
 <li><a href="#Database2">7.3. I don't want the client TIMESTAMP messages in the SQL database</a></li>
 <li><a href="#Database3">7.4. What does the log_ref field mean ?</a></li>
+<li><a href="#Database4">7.5. How can I check what is in the database ?</a></li>
 </ul></dd>
 </dl>
@@ -373,4 +375,20 @@
 <dt><b><a name="Build and install7">2.8. ./install-sh: strip: not found (Solaris)</a></b></dt>
 <dd>Install the SUNWbtool package.<br><br></dd>
+<dt><b><a name="Build and install8">2.9. What is sh_tiger1.s?</a></b></dt>
+<dd>This is a precompiled assembly file for the i386 architecture 
+generated from sh_tiger1.c using gcc 3.4.0 with the following options,
+that were found to generate the fastest code:
+<pre>
+ -O1 -fno-delayed-branch -fexpensive-optimizations -fstrength-reduce 
+     -fpeephole2 -fschedule-insns2 -fregmove -frename-registers -fweb 
+     -momit-leaf-frame-pointer -funroll-loops
+</pre>
+These options were determined using 
+<a href="http://www.coyotegulch.com/products/acovea/">acovea</a> 5.1.1 
+by  Scott Robert Ladd. The file is provided as precompiled assembly 
+because different versions of gcc can have very different performance, 
+require different options to compile optimal code, and
+it would be impossible to maintain a library of optimal compile options
+for every version of gcc.<br><br></dd>
 </dl>
 <hr><h2>3. File checking</h2>
@@ -743,5 +761,5 @@
 
         2.) In your client or server configuration file, you are using
-        the option for a custum message header, but without paying attention
+        the option for a custom message header, but without paying attention
         to preserving the XML format.
 </pre></div><br><br></dd>
@@ -793,4 +811,13 @@
         number of the corresponding client message). Zero indicates a message
         by the server itself (e.g. the server's start message).<br><br></dd>
+<dt><b><a name="Database4">7.5. How can I check what is in the database ?</a></b></dt>
+<dd>Use a command line client to login to the database and query it:
+<div class="block"><pre>
+     sh$ mysql -u &lt;user_name&gt; -p &lt;database_name&gt;
+     Enter password: ****
+     mysql&gt; SELECT log_index,log_ref,log_host,log_sev,log_msg,path FROM &lt;table_name&gt; WHERE entry_status = 'NEW' ORDER BY log_index;
+     ....
+     mysql&gt; \q 
+</pre></div><br><br></dd>
 </dl>
 <hr>
