<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><!-- InstanceBegin template="../../Templates/DocTemp.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<!-- InstanceBeginEditable name="doctitle" -->
<title>ODXSQL - USE Files</title>
<!-- InstanceEndEditable --> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../../docs.css" rel="stylesheet" type="text/css">
<script language="JavaScript1.2" src="../../docs.js"></script>
<!-- InstanceBeginEditable name="head" --><!-- InstanceEndEditable -->
</head>

<body>
<table width="100%" class="lightblue" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><a href="http://www.omnidex.com"><img src="../../images/flatlogo.gif" width="95" height="25" hspace="3" vspace="3" border="0"></a></td>
    <td><img src="../../images/omnidex.gif" width="109" height="25" hspace="3" vspace="3"></td>
    <td align="right" valign="top"><p class="banner"><a href="../../Contents.htm">Contents</a> 
        | <a href="../../Quick%20Links.htm">Quick Links</a></p></td>
  </tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr> 
    <td width="175" class="bar"><p class="banner">&nbsp;</p></td>
    <td align="right" class="bar"> <!-- InstanceBeginEditable name="Section Title" -->
      <h1>ODXSQL</h1>
      <!-- InstanceEndEditable --></td>
  </tr>
  <tr> 
    <td width="175" class="left1 lightblue"><img src="../../images/blank.gif" width="10" height="20"> 
    </td>
    <td valign="top" class="left1 lightblue">&nbsp; </td>
  </tr>
  <tr> 
    <td width="175" valign="top" class="left"><!-- InstanceBeginEditable name="leftnav" --> 
      <p><a href="#using">Using Directives</a></p>
      <p><a href="#directives">Directives List</a></p>
      <p class="line">&nbsp;</p>
      <p><a href="ODXSQL.htm">ODXSQL</a></p>
      <p><a href="ODXSQL.htm#characters" target="showme">Special Characters</a></p>
      <p><a href="ODXSQL.htm#system">System Commands</a></p>
      <p><a href="ODXSQL.htm#help">Getting Help</a></p>
      <p>USE Files</p>
      <p><a href="Commands.htm">Commands</a></p>
      <!-- InstanceEndEditable --></td>
    <td valign="top" class="content"> <!-- InstanceBeginEditable name="Content" --> 
      <h2>USE Files</h2>
      <p>A USE file is a text file containing a list of OdxSQL commands to be 
        processed automatically without the need for user interaction. Directives 
        placed throughout the USE file control the flow of the execution. OdxSQL 
        processes each command in the file in order until it encounters an error 
        or the end of the file. If an error occurs, by default, processing halts 
        and all subsequent commands are ignored.</p>
      <p>To prevent OdxSQL from halting execution when an error occurs, set the 
        ERRORS set option to CONTINUE either before issuing the USE command or 
        at the beginning of the USE file.</p>
      <p>A WHERE clause passed with the USE filename command can instruct OdxSQL 
        to execute only a certain block of commands in the USE file defined with 
        directives. Directives can be used to assign a name to a block of commands, 
        so when referenced in the WHERE clause, only the specified block and commands 
        contained within a COMMON directive, will be executed. Directives can 
        also be used to suspend execution on a certain block of commands, causing 
        all commands except the suspended block to be executed.</p>
      <p>Commands in a USE file are executed in order as they appear in the file. 
        Therefore, they must occur in proper logical order. For example, a CONNECT 
        must occur before a SELECT and an ATTACH OST must occur before a DETACH 
        OST.</p>
      <p class="line">&nbsp;</p>
      <h3><a name="using" id="using"></a>Using Directives</h3>
      <p> Directives are tags placed inside a USE file to control the flow of 
        the use file commands. They divide a USE file into sections that will 
        be treated differently, according to the directive. With the exception 
        of VERBOSE and QUIET, all directives come in pairs: one marking the beginning 
        of a section and one marking the end of that section.</p>
      <p>Directives are defined in a comment line inside &lt; &gt; tags. Multiple 
        directives on a single line must be placed within the same &lt; &gt; tags. 
        For example,</p>
      <p>;&lt;COMMON VERBOSE&gt; is the correct way<br>
        ;&lt;COMMON&gt;&lt;VERBOSE&gt; will not work. &lt;VERBOSE&gt; is ignored.</p>
      <p>In the second example, the first directive, COMMON, will be implemented; 
        everything after that will be ignored.</p>
      <p>Comments can be placed on the same line as a directive as long as they 
        come after the directive. If comments are placed on the line before the 
        directive, the directive will be ignored.</p>
      <p>Blocks of commands can be separated using directives to prevent them 
        from being executed, ensure that they are always executed, group them 
        together by some logic, or name them to be explicitly executed. For example, 
        if a block of commands was separated and named using the SECTION directive, 
        this particular section could be executed while the rest of the USE file 
        is ignored, with the exeception of the COMMON sections, which are always 
        executed.</p>
      <h6>USE file (useme.txt)</h6>
      <p class="ex"> ;&lt;COMMON&gt;<br>
        CONNECT ORDERS.ENV<br>
        ;&lt;END_COMMON&gt;<br>
        OPEN CURSOR<br>
        SET CURSOR 1<br>
        ...<br>
        ;&lt;QUIET&gt;<br>
        ...<br>
        ;&lt;SECTION=secname&gt;<br>
        select * from customers<br>
        ;&lt;END_SECTION&gt;<br>
        ...<br>
        ;&lt;VERBOSE&gt;<br>
        ...<br>
        ;&lt;COMMON&gt;<br>
        DISCONNECT<br>
        ;&lt;END_COMMON&gt;</p>
      <h6>OdxSQL</h6>
      <p class="ex"> &gt;USE useme.txt WHERE section='secname'<br>
        ...</p>
      <p>In the above example, from the beginning of the file, execution proceeds 
        as follows:</p>
      <p>The first COMMON section is executed - CONNECT ORDERS.ENV <br>
        All subsequent commands are ignored until the QUIET directive is reached, 
        which is then executed. <br>
        Again, all subsequent commands are ignored until the SECTION named 'secname' 
        is reached. The commands inside this SECTION are executed (select * from 
        customers) <br>
        All subsequent commands are ignored until the VERBOSE directive is reached, 
        which is then executed. <br>
        Again, all subsequent commands are ignored until the final COMMON directive 
        is reached, and the commands inside this common area are executed (DISCONNECT).</p>
      <p class="line">&nbsp;</p>
      <h3><a name="directives"></a>Directives</h3>
      <p class="indent">&lt;VERBOSE&gt;<br>
        The VERBOSE directive instructs OdxSQL to echo each command in the USE 
        file to the OdxSQL window, as it is executed. VERBOSE can be set by itself 
        or with another directive within the same &lt; &gt; tags.<br>
        <span class="ex">;&lt;VERBOSE&gt;</span> By itself OR<br>
        <span class="ex">;&lt;COMMON VERBOSE&gt;</span> with another directive</p>
      <p class="indent">&lt;QUIET&gt;<br>
        The QUIET directive prevents OdxSQL from echoing each command in the USE 
        file to the OdxSQL window, as it is executed. Like VERBOSE, QUIET can 
        be set by itself or with another directive within the same &lt; &gt; tags.<br>
        <span class="ex">;&lt;QUIET&gt;</span> By itself OR<br>
        <span class="ex">;&lt;COMMON QUIET&gt;</span> with another directive</p>
      <p class="indent">&lt;SUSPEND&gt;<br>
        The SUSPEND directive is used with the RESUME directive to prevent OdxSQL 
        from executing a group of commands in a USE file. SUSPEND marks the beginning 
        of the section and RESUME marks the end. Everything between these two 
        directives will be ignored, including other directives.<br>
        <span class="ex">CONNECT ORDERS.ENV<br>
        ;&lt;SUSPEND&gt; Stop executing commands here<br>
        OPEN CURSOR<br>
        OPEN CURSOR<br>
        SET CURSOR 1<br>
        ;&lt;RESUME&gt; Resume executing commands here</span></p>
      <p class="indent">&lt;RESUME&gt;<br>
        The RESUME directive causes OdxSQL to resume executing commands in a USE 
        file. It is used in conjunction with the SUSPEND directive, which marks 
        the place to stop executing commands in a USE file. Everything between 
        these two directives will be ignored, including other directives.</p>
      <p class="indent">&lt;COMMON&gt;<br>
        T he COMMON directive marks the beginning of a section of commands in 
        a USE file that will be executed every time the USE file is processed 
        by OdxSQL. END_COMMON marks the end of this section. A COMMON block is 
        terminated by an END_COMMON directive, another COMMON directive, a SECTION=name 
        directive, or a TEST=name directive. For clarity, an END_COMMON directive 
        should always be used.<br>
        <span class="ex">;&lt;COMMON&gt;<br>
        CONNECT ORDERS.ENV<br>
        OPEN CURSOR<br>
        SET CURSOR 1<br>
        ;&lt;END_COMMON&gt;<br>
        ...<br>
        ;&lt;COMMON&gt;<br>
        DISCONNECT<br>
        ;&lt;END_COMMON&gt;</span></p>
      <p class="indent">&lt;END_COMMON&gt; <br>
        The END_COMMON directive marks the end of a section of commands in a USE 
        file that will be executed every time the USE file is processed by OdxSQL. 
        COMMON marks the beginning of this section.</p>
      <p class="indent">&lt;SECTION=name&gt; <br>
        The SECTION=name directive marks the beginning of a section or block of 
        commands and gives it the specified name so that it can be referenced 
        in the WHERE clause of a USE command. A SECTION block is terminated by 
        an END_SECTION directive, another SECTION=name2 directive, a COMMON directive, 
        or a TEST=name directive. For clarity, an END_SECTION directive should 
        always be used.</p>
      <p class="indent">&lt;END_SECTION&gt;<br>
        The END_SECTION directive marks the end of the last named SECTION in the 
        USE file. SECTION=name marks the beginning of this section.</p>
      <p class="indent">&lt;TEST=name&gt; <br>
        The TEST=name directive marks the beginning of a small group of commands 
        that are logically linked in some way. For example, a qualify and select 
        statement could be grouped together. A TEST block is terminated by an 
        END_TEST directive, another TEST=name2 directive, a COMMON directive, 
        or a SECTION=name directive. For clarity, an END_TEST directive should 
        always be used.</p>
      <p class="indent">&lt;END_TEST&gt; <br>
        The END_TEST directive marks the end of the last named TEST in the USE 
        file. TEST=name marks the beginning of this section.<br>
      </p>
      <!-- InstanceEndEditable --><P align="right"><a href="#">Top</a> </P>
	  </td>
  </tr>
  <tr>
    <td width="175" class="bbar">
<p>&nbsp;</p></td>
    <td align="right" valign="middle" class="bbar"> <p class="banner">Omnidex 
        Version 4.1 Build 1 - E10.04 - Dynamic Information Systems Corporation 
        - Copyright &copy; 2004</p></td>
  </tr>
</table>
<div class="menu0" id="m1" onMouseOver="changeClass('menu1','m1'); changeVisibility('visible','s1');" onMouseOut="changeClass('menu0','m1'); changeVisibility('hidden','s1');"> 
  <a href="../../index.htm">Home</a></div>      
<div class="menu0" id="m2" onMouseOver="changeClass('menu1','m2'); changeVisibility('visible','s2');" onMouseOut="changeClass('menu0','m2'); changeVisibility('hidden','s2');"> 
  <a href="../../Omnidex%20Concepts/Omnidex%20Overview.htm">Omnidex</a></div>      
<div class="menu0" id="m3" onMouseOver="changeClass('menu1','m3'); changeVisibility('visible','s3');" onMouseOut="changeClass('menu0','m3'); changeVisibility('hidden','s3');"> 
  <a href="../../Getting%20Started/Getting%20Started.htm">Getting Started </a></div>      
<div class="menu0" id="m4" onMouseOver="changeClass('menu1','m4'); changeVisibility('visible','s4');" onMouseOut="changeClass('menu0','m4'); changeVisibility('hidden','s4');"> 
  <a href="../../Development/Development.htm">Development</a></div>      
<div class="menu0" id="m5" onMouseOver="changeClass('menu1','m5'); changeVisibility('visible','s5');" onMouseOut="changeClass('menu0','m5'); changeVisibility('hidden','s5');"> 
  <a href="../Utilities.htm">Utilities</a></div>      
<div class="menu0" id="m6" onMouseOver="changeClass('menu1','m6'); changeVisibility('visible','s6');" onMouseOut="changeClass('menu0','m6'); changeVisibility('hidden','s6');"> 
  <a href="../../Appendix/Appendix.htm">Appendix</a></div>
    <td>&nbsp;</td>
  </tr>
</table> 
<table id="s1" border="0" cellspacing="0" cellpadding="0" onMouseOver="changeClass('menu1','m1'); changeVisibility('visible','s1');" onMouseOut="changeClass('menu0','m1'); changeVisibility('hidden','s1');">
  <tr> 
    <td id="s11" class="menu1" onMouseOver="changeClass('menu0','s11');" onMouseOut="changeClass('menu1','s11');"><a href="../../Whats%20New.htm">What's 
      New!</a></td>
  </tr>
  <tr> 
    <td id="s12" class="menu1" onMouseOver="changeClass('menu0','s12');" onMouseOut="changeClass('menu1','s12');"><a href="../../Quick%20Links.htm">Quick 
      Links</a></td>
  </tr>
  <tr> 
    <td id="s13" class="menu1" onMouseOver="changeClass('menu0','s13');" onMouseOut="changeClass('menu1','s13');"><a href="../../Contents.htm">Contents</a></td>
  </tr>
</table>
<table id="s2" border="0" cellspacing="0" cellpadding="0" onMouseOver="changeClass('menu1','m2'); changeVisibility('visible','s2');" onMouseOut="changeClass('menu0','m2'); changeVisibility('hidden','s2');">
  <tr> 
    <td id="s21" class="menu1" onMouseOver="changeClass('menu0','s21');" onMouseOut="changeClass('menu1','s21');"><a href="../../Omnidex%20Concepts/Features/Features.htm">Features</a></td>
  </tr>
  <tr> 
    <td id="s22" class="menu1" onMouseOver="changeClass('menu0','s22');" onMouseOut="changeClass('menu1','s22');"><a href="../../Omnidex%20Concepts/Indexing%20Strategies/Indexing%20Strategies.htm">Indexing 
      Strategies</a></td>
  </tr>
  <tr> 
    <td id="s23" class="menu1" onMouseOver="changeClass('menu0','s23');" onMouseOut="changeClass('menu1','s23');"><a href="../../Omnidex%20Concepts/Indexing%20Options/Indexing%20Options.htm">Indexing 
      Options </a></td>
  </tr>
  <tr> 
    <td id="s24" class="menu1" onMouseOver="changeClass('menu0','s24');" onMouseOut="changeClass('menu1','s24');"><a href="../../Omnidex%20Concepts/Index%20Maintenance/Index%20Maintenance.htm">Index 
      Maintenance </a></td>
  </tr>
  <tr> 
    <td id="s25" class="menu1" onMouseOver="changeClass('menu0','s25');" onMouseOut="changeClass('menu1','s25');"><a href="../../Omnidex%20Concepts/Partitioning/Partitioning.htm">Optimization</a></td>
  </tr>
  <tr> 
    <td id="s26" class="menu1" onMouseOver="changeClass('menu0','s26');" onMouseOut="changeClass('menu1','s26');"><a href="../../Omnidex%20Concepts/Index%20Maintenance/Index%20Maintenance.htm">Partitioning</a></td>
  </tr>
  <tr> 
    <td id="s27" class="menu1" onMouseOver="changeClass('menu0','s27');" onMouseOut="changeClass('menu1','s27');"><a href="../../Omnidex%20Concepts/Text/Omnidex%20Text.htm">Omnidex Text</a></td>
  </tr>
</table>
<table id="s3" border="0" cellspacing="0" cellpadding="0" onMouseOver="changeClass('menu1','m3'); changeVisibility('visible','s3');" onMouseOut="changeClass('menu0','m3'); changeVisibility('hidden','s3');">
  <tr> 
    <td id="s31" class="menu1" onMouseOver="changeClass('menu0','s31');" onMouseOut="changeClass('menu1','s31');"><a href="../../Getting%20Started/1%20-%20Installation%20and%20Setup.htm">Server 
      Setup Guides</a></td>
  </tr>
  <tr> 
    <td id="s32" class="menu1" onMouseOver="changeClass('menu0','s32');" onMouseOut="changeClass('menu1','s32');"><a href="../../Getting%20Started/Omnidex%20Client/Windows%20Client.htm">Windows 
      Client</a></td>
  </tr>
  <tr> 
    <td id="s33" class="menu1" onMouseOver="changeClass('menu0','s33');" onMouseOut="changeClass('menu1','s33');"><a href="../../Database%20Platforms/Supported%20Database%20Platforms.htm">Database 
      Platforms </a></td>
  </tr>
  <tr> 
    <td id="s34" class="menu1" onMouseOver="changeClass('menu0','s34');" onMouseOut="changeClass('menu1','s34');"><a href="../../Environment%20Catalog/Environment%20Catalog.htm">Environment 
      Catalog</a> </td>
  </tr>
</table>
<table id="s4" border="0" cellspacing="0" cellpadding="0" onMouseOver="changeClass('menu1','m4'); changeVisibility('visible','s4');" onMouseOut="changeClass('menu0','m4'); changeVisibility('hidden','s4');">
  <tr> 
    <td id="s41" class="menu1" onMouseOver="changeClass('menu0','s41');" onMouseOut="changeClass('menu1','s41');"><a href="../../SQL%20Reference/SQL%20Reference.htm">SQL 
      Reference</a> </td>
  </tr>
  <tr> 
    <td id="s42" class="menu1" onMouseOver="changeClass('menu0','s42');" onMouseOut="changeClass('menu1','s42');"><a href="../../Development/ODBC/ODBC.htm">ODBC</a></td>
  </tr>
  <tr> 
    <td id="s43" class="menu1" onMouseOver="changeClass('menu0','s43');" onMouseOut="changeClass('menu1','s43');"><a href="../../Development/JDBC/JDBC.htm">JDBC</a></td>
  </tr>
  <tr> 
    <td id="s44" class="menu1" onMouseOver="changeClass('menu0','s44');" onMouseOut="changeClass('menu1','s44');"><a href="../../Development/OmniAccess%20API/OmniAccess%20API.htm">OmniAccess 
      API</a></td>
  </tr>
  <tr> 
    <td id="s45" class="menu1" onMouseOver="changeClass('menu0','s45');" onMouseOut="changeClass('menu1','s45');"><a href="../../Development/Debugging/OMNIDEX_DEBUG.htm">Debugging</a></td>
  </tr>
</table>
<table id="s5" border="0" cellspacing="0" cellpadding="0" onMouseOver="changeClass('menu1','m5'); changeVisibility('visible','s5');" onMouseOut="changeClass('menu0','m5'); changeVisibility('hidden','s5');">
  <tr> 
    <td id="s51" class="menu1" onMouseOver="changeClass('menu0','s51');" onMouseOut="changeClass('menu1','s51');"><A href="../DBINSTAL/DBINSTAL.htm">DBINSTAL</A></td>
  </tr>
  <tr> 
    <td id="s52" class="menu1" onMouseOver="changeClass('menu0','s52');" onMouseOut="changeClass('menu1','s52');"><a href="../DSEDIT/DSEDIT.htm">DSEDIT</a></td>
  </tr>
  <tr> 
    <td id="s53" class="menu1" onMouseOver="changeClass('menu0','s53');" onMouseOut="changeClass('menu1','s53');"><a href="../NSADMIN/NSADMIN.htm">NSADMIN</a></td>
  </tr>
  <tr> 
    <td id="s54" class="menu1" onMouseOver="changeClass('menu0','s54');" onMouseOut="changeClass('menu1','s54');"><a href="../OACOMP/OACOMP.htm">OACOMP</a></td>
  </tr>
  <tr> 
    <td id="s55" class="menu1" onMouseOver="changeClass('menu0','s55');" onMouseOut="changeClass('menu1','s55');"><a href="../OADECOMP/OADECOMP.htm">OADECOMP</a></td>
  </tr>
  <tr> 
    <td id="s56" class="menu1" onMouseOver="changeClass('menu0','s56');" onMouseOut="changeClass('menu1','s56');"><a href="../OAHELPER/OAHELPER.htm">OAHELPER</a></td>
  </tr>
  <tr> 
    <td id="s57" class="menu1" onMouseOver="changeClass('menu0','s57');" onMouseOut="changeClass('menu1','s57');"><A href="../ODXAIM/ODXAIM.htm">ODXAIM</A></td>
  </tr>
  <tr> 
    <td id="s58" class="menu1" onMouseOver="changeClass('menu0','s58');" onMouseOut="changeClass('menu1','s58');"><a href="../ODXMAKE/ODXMAKE.htm">ODXMAKE</a></td>
  </tr>
  <tr> 
    <td id="s59" class="menu1" onMouseOver="changeClass('menu0','s59');" onMouseOut="changeClass('menu1','s59');"><a href="../ODXNET/ODXNET.htm">ODXNET</a></td>
  </tr>
  <tr> 
    <td id="s510" class="menu1" onMouseOver="changeClass('menu0','s510');" onMouseOut="changeClass('menu1','s510');"><A href="../ODXQUERY/ODXQUERY.htm">ODXQUERY</A></td>
  </tr>
  <tr> 
    <td id="s511" class="menu1" onMouseOver="changeClass('menu0','s511');" onMouseOut="changeClass('menu1','s511');"><a href="ODXSQL.htm">ODXSQL</a></td>
  </tr>
  <tr> 
    <td id="s512" class="menu1" onMouseOver="changeClass('menu0','s512');" onMouseOut="changeClass('menu1','s512');"><a href="../REGMAINT/REGMAINT.htm">REGMAINT</a></td>
  </tr>
  <tr> 
    <td id="s513" class="menu1" onMouseOver="changeClass('menu0','s513');" onMouseOut="changeClass('menu1','s513');"><A href="../REGTEST/REGTEST.htm">REGTEST</A></td>
  </tr>
  <tr> 
    <td id="s514" class="menu1" onMouseOver="changeClass('menu0','s514');" onMouseOut="changeClass('menu1','s514');"><a href="../SNOWGEN/SNOWGEN.htm">SNOWGEN</a></td>
  </tr>
  <tr> 
    <td id="s515" class="menu1" onMouseOver="changeClass('menu0','s515');" onMouseOut="changeClass('menu1','s515');"><a href="../SYSINFO/SYSINFO.htm">SYSINFO</a></td>
  </tr>
  <tr> 
    <td id="s516" class="menu1" onMouseOver="changeClass('menu0','s516');" onMouseOut="changeClass('menu1','s516');"><a href="../VERSIONS/VERSIONS.htm">VERSIONS</a></td>
  </tr>
  <tr> 
    <td id="s517" class="menu1" onMouseOver="changeClass('menu0','s517');" onMouseOut="changeClass('menu1','s517');"><a href="../VIEWGEN/VIEWGEN.htm">VIEWGEN</a></td>
  </tr>
</table>
<table id="s6" border="0" cellspacing="0" cellpadding="0" onMouseOver="changeClass('menu1','m6'); changeVisibility('visible','s6');" onMouseOut="changeClass('menu0','m6'); changeVisibility('hidden','s6');">
  <tr> 
    <td id="s61" class="menu1" onMouseOver="changeClass('menu0','s61');" onMouseOut="changeClass('menu1','s61');"><a href="../../Appendix/Cardinality.htm">Cardinality</a></td>
  </tr>
  <tr> 
    <td id="s62" class="menu1" onMouseOver="changeClass('menu0','s62');" onMouseOut="changeClass('menu1','s62');"><a href="../../Appendix/Date%20Formats.htm">Date 
      Formats </a></td>
  </tr>
  <tr> 
    <td id="s63" class="menu1" onMouseOver="changeClass('menu0','s63');" onMouseOut="changeClass('menu1','s63');"><a href="../../Appendix/Environment%20Variables.htm">Environment 
      Variables </a></td>
  </tr>
  <tr> 
    <td id="s64" class="menu1" onMouseOver="changeClass('menu0','s64');" onMouseOut="changeClass('menu1','s64');"><a href="../../Appendix/File%20Name%20Handling.htm">File 
      Name Handling</a></td>
  </tr>
  <tr> 
    <td id="s65" class="menu1" onMouseOver="changeClass('menu0','s65');" onMouseOut="changeClass('menu1','s65');"><a href="../../Appendix/Glossary%20A.htm">Glossary</a></td>
  </tr>
  <tr> 
    <td id="s66" class="menu1" onMouseOver="changeClass('menu0','s66');" onMouseOut="changeClass('menu1','s66');"><a href="../../Appendix/Null.htm">Null</a></td>
  </tr>
  <tr> 
    <td id="s67" class="menu1" onMouseOver="changeClass('menu0','s67');" onMouseOut="changeClass('menu1','s67');"><a href="../../Appendix/OAGLOBAL.htm">OAGLOBAL</a></td>
  </tr>
  <tr> 
    <td id="s68" class="menu1" onMouseOver="changeClass('menu0','s68');" onMouseOut="changeClass('menu1','s68');"><a href="../../Appendix/Operating%20Limits.htm">Operating 
      Limits</a></td>
  </tr>
  <tr> 
    <td id="s69" class="menu1" onMouseOver="changeClass('menu0','s69');" onMouseOut="changeClass('menu1','s69');"><a href="../../Appendix/Provided%20Managed%20Synonym%20Lists.htm">Managed 
      Synonym Lists</a></td>
  </tr>
  <tr> 
    <td id="s70" class="menu1" onMouseOver="changeClass('menu0','s70');" onMouseOut="changeClass('menu1','s70');"><a href="../../Appendix/Reserved%20Words.htm">Reserved 
      Words</a></td>
  </tr>
  <tr> 
    <td id="s71" class="menu1" onMouseOver="changeClass('menu0','s71');" onMouseOut="changeClass('menu1','s71');"><a href="../../Appendix/Supported%20Datatypes.htm">Supported 
      Data Types</a></td>
  </tr>
</table>
<p>&nbsp;</p>
</body>
<!-- InstanceEnd --></html>
