Sophie

Sophie

distrib > Fedora > 17 > i386 > by-pkgid > 675c8c8167236dfcf8d66da674f931e8 > files > 1537

erlang-doc-R15B-03.3.fc17.noarch.rpm

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../../../../doc/otp_doc.css" type="text/css">
<title>Erlang -- The Table Visualizer</title>
</head>
<body bgcolor="white" text="#000000" link="#0000ff" vlink="#ff00ff" alink="#ff0000"><div id="container">
<script id="js" type="text/javascript" language="JavaScript" src="../../../../doc/js/flipmenu/flipmenu.js"></script><script id="js2" type="text/javascript" src="../../../../doc/js/erlresolvelinks.js"></script><script language="JavaScript" type="text/javascript">
            <!--
              function getWinHeight() {
                var myHeight = 0;
                if( typeof( window.innerHeight ) == 'number' ) {
                  //Non-IE
                  myHeight = window.innerHeight;
                } else if( document.documentElement && ( document.documentElement.clientWidth ||
                                                         document.documentElement.clientHeight ) ) {
                  //IE 6+ in 'standards compliant mode'
                  myHeight = document.documentElement.clientHeight;
                } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
                  //IE 4 compatible
                  myHeight = document.body.clientHeight;
                }
                return myHeight;
              }

              function setscrollpos() {
                var objf=document.getElementById('loadscrollpos');
                 document.getElementById("leftnav").scrollTop = objf.offsetTop - getWinHeight()/2;
              }

              function addEvent(obj, evType, fn){
                if (obj.addEventListener){
                obj.addEventListener(evType, fn, true);
                return true;
              } else if (obj.attachEvent){
                var r = obj.attachEvent("on"+evType, fn);
                return r;
              } else {
                return false;
              }
             }

             addEvent(window, 'load', setscrollpos);

             //--></script><div id="leftnav"><div class="innertube">
<img alt="Erlang logo" src="../../../../doc/erlang-logo.png"><br><small><a href="users_guide.html">User's Guide</a><br><a href="index.html">Reference Manual</a><br><a href="release_notes.html">Release Notes</a><br><a href="../pdf/tv-2.1.4.9.pdf">PDF</a><br><a href="../../../../doc/index.html">Top</a></small><p><strong>Table Visualizer (TV)</strong><br><strong>User's Guide</strong><br><small>Version 2.1.4.9</small></p>
<br><a href="javascript:openAllFlips()">Expand All</a><br><a href="javascript:closeAllFlips()">Contract All</a><p><small><strong>Chapters</strong></small></p>
<ul class="flipMenu" imagepath="../../../../doc/js/flipmenu"><li id="loadscrollpos" title="The Table Visualizer" expanded="true">The Table Visualizer<ul>
<li><a href="table_visualizer.html">
              Top of chapter
            </a></li>
<li title="Terminology and Background"><a href="table_visualizer.html#id61428">Terminology and Background</a></li>
<li title="Starting the TV"><a href="table_visualizer.html#id61160">Starting the TV</a></li>
<li title="Changing View"><a href="table_visualizer.html#id61696">Changing View</a></li>
<li title="Changing the Current Node"><a href="table_visualizer.html#id61289">Changing the Current Node</a></li>
<li title="Opening a Table in the Table Browser"><a href="table_visualizer.html#id61732">Opening a Table in the Table Browser</a></li>
<li title="Tracing the Owner Process"><a href="table_visualizer.html#id62107">Tracing the Owner Process</a></li>
<li title="Creating a New Table"><a href="table_visualizer.html#id62136">Creating a New Table</a></li>
<li title="The TV Main Window Menus"><a href="table_visualizer.html#id62177">The TV Main Window Menus</a></li>
</ul>
</li></ul>
</div></div>
<div id="content">
<div class="innertube">
<h1>1 The Table Visualizer</h1>
  
    <div class="warning">
<div class="label">Warning</div>
<div class="content"><p>
      <p>
	The TV application has been superseded by the Observer application.
	TV will be removed in R16.
      </p>
    </p></div>
</div>
  <p>The TV, TV, is a tool that enables the user to examine 
    ETS and Mnesia tables on any (connected) node in the currently running Erlang
    system. Once a certain table has been opened in the tool, the content may be
    viewed in various levels of detail. The content may also be edited, as well as
    sorted, using any element as key. It is also possible to search for a specified object or
    element. The table may be polled anytime, either regularly, at specified
    intervals, or manually. New and deleted objects, as well as those altered, are
    marked with characteristic colours.</p>
  <p>Information about the table itself (permissions, storage type, and so on) may
    also be obtained.
    </p>

  <h3><a name="id61428">1.1 
        Terminology and Background</a></h3>
    
    <p>To avoid confusion, we have to distinguish between the <strong>actual table</strong>, i.e.,
      the data stored in ETS or Mnesia, and the <strong>image of the table</strong>, i.e., the
      data shown in the TV. The <strong>image of the table</strong> is simply a copy
      of the <strong>actual table</strong>, and can be manipulated in a number of ways, for example
      sorted. It follows that these manipulations in no way affects the <strong>actual table</strong>!</p>
    <p>The expression <strong>poll the table</strong> is used for the operation of scanning through the
      content of the actual table (in order to keep the image of the table consistent with the
      actual table).</p>
    <p>The ETS and Mnesia modules provides the user with the ability to store vast quantities
      of data in, the data organized as dynamic, unordered tables. The ETS
      facility stores <strong>tuples</strong>, while Mnesia stores <strong>records</strong>.
      Each tuple consists of one or more <strong>elements</strong>; each record consists of one or
      more <strong>fields</strong>. It should be noted that, since records are implemented as tuples,
      with the record name as the first element, the first field of a record becomes the second
      element in the corresponding tuple!
            <br>

      In the following, all table objects are mainly referred to as tuples, regardless of the
      table type.</p>
    <p>For further information about ETS and Mnesia, please see the manual pages and Mnesia User's Guide.</p>
  

  <h3><a name="id61160">1.2 
        Starting the TV</a></h3>
    
    <p>The TV tool is started by giving the command</p>
    <div class="example"><pre>
      tv:start().
    </pre></div>
    <p>The window that appears, is hereafter referred to as <strong>the TV main window</strong>. It consists of:</p>
    <ul>
      <li>
        <p>a <strong>menubar</strong>.</p>
      </li>
      <li>
        <p>a <strong>grid</strong>, i.e., a multicolumnar array, where tables existing on
          the current node is shown. Each square in the grid is called a <strong>cell</strong>.</p>
      </li>
    </ul>
    <img alt="IMAGE MISSING" src="tv_start.gif"><br>
      <em>Figure
        1.1:
         
        The TV Main Window at startup.</em>
    
    <p>For each table, the following information is shown, in order:
      </p>
    <ul>
      <li>
        <p>the <strong>table name</strong>. If the table is accessible through this name, as is the
          case with Mnesia tables and named ETS tables, the table name is shown in
          black, otherwise in medium grey.</p>
      </li>
      <li>
        <p>the <strong>table identifier</strong>, if there is one; since Mnesia tables are accessed
          solely through the table name, this cell will in those cases be blank.</p>
      </li>
      <li>
        <p>the <strong>process identifier (PID) of the process owning the table</strong>.</p>
      </li>
      <li>
        <p>the <strong>name of the process owning the table</strong>, provided the process
          is registered.</p>
      </li>
      <li>
        <p>the <strong>table size</strong>, i.e., the number of objects currently stored in
          the table.</p>
      </li>
    </ul>
  

  <h3><a name="id61696">1.3 
        Changing View</a></h3>
    
    <p>The TV will by default show currently existing ETS tables,
      but the user may easily switch to a Mnesia table view, by choosing the
      <strong>Mnesia Tables</strong> option in the <strong>View</strong> menu:
      </p>
    <img alt="IMAGE MISSING" src="tv_start_mnesia.gif"><br>
      <em>Figure
        1.2:
         
        The TV Main Window, showing Mnesia tables.</em>
    
    <p>Normally, system tables (i.e., tables used by system applications) and unreadable
      tables are not shown. The menu option <strong>System Tables</strong>, in the <strong>Options</strong>
      menu, makes the system tables visible:
      </p>
    <img alt="IMAGE MISSING" src="tv_start_system.gif"><br>
      <em>Figure
        1.3:
         
        The TV Main Window, showing readable user and system tables.</em>
    
    <p>Still unreadable tables are hidden, but the menu option <strong>Unreadable Tables</strong>,
      also in the <strong>Options</strong> menu, makes even those tables visible. It shall be noted
      that rows containing unreadable tables are shaded, using a grey colour:
      </p>
    <img alt="IMAGE MISSING" src="tv_start_system_unreadable.gif"><br>
      <em>Figure
        1.4:
         
        The TV Main Window, showing both readable and unreadable user and system tables.</em>
    
    <p>Once a table view has been opened, the user may choose how to view it: it may be sorted
      by the table names, by the table identifiers, by the process identifiers of the owner
      processes, or by the names of the owning processes. These sorting options are found in the
      <strong>Options</strong> menu.
      </p>
    <img alt="IMAGE MISSING" src="tv_start_pid_sorted.gif"><br>
      <em>Figure
        1.5:
         
        The TV Main Window, tables sorted by owner PID.</em>
    
  

  <h3><a name="id61289">1.4 
        Changing the Current Node</a></h3>
    
    <p>By default, the Table Vizualizer will show tables residing on the node
      it was started from. However, the user may easily view tables on other nodes.
      By choosing the <strong>Nodes</strong> option, in the <strong>File</strong> menu, a window showing
      all connected nodes will appear. Clicking on any of the nodes in the list will cause
      the main window to immediately show the tables residing on the specified node:
      </p>
    <img alt="IMAGE MISSING" src="tv_start_other_node.gif"><br>
      <em>Figure
        1.6:
         
        The Connected Nodes window, and the TV Main Window, showing tables on the selected node.</em>
    
  

  <h3><a name="id61732">1.5 
        Opening a Table in the Table Browser</a></h3>
    
    <p>Whenever a table shall be opened, the first step is to choose the corresponding
      <strong>Table Name</strong> or <strong>Table ID</strong> cell. Secondly, the <strong>Open Table</strong>
      menu item, in the <strong>File</strong> menu, has to be chosen. (Or, one may directly
      double-click on a <strong>Table Name</strong> or <strong>Table Id</strong> cell.)</p>
    <p>If the table selected table is readable, a window will appear after a short delay. This new
      window is hereafter denoted the <strong>Table Browser</strong> window. Should the table be
      unreadable, the Table Information window will appear instead (see further description
      below).
      </p>

    <h4>The Table Browser Window</h4>
      
      <p>The Table Browser window consists of:</p>
      <ul>
        <li>
          <p>a <strong>menubar</strong>.</p>
        </li>
        <li>
          <p>a <strong>toolbar</strong> with buttons providing shortcuts to the menubar options. If the
            cursor rests on any button, a so-called toolbar tip, explaining the button,
            will appear.             <br>
 
            (In the picture below, the cursor has lingered on the <strong>Open Table</strong>
            button for a while.)</p>
        </li>
        <li>
          <p>a <strong>content and edit field</strong>, showing the content of a specified row or cell.
            Through this field the row, or cell, may also be edited (see below for a detailed
            description).</p>
        </li>
        <li>
          <p>a <strong>grid</strong>, i.e., a multicolumnar array, where the content of the
            opened table will be shown. (As above, each square in the grid is called a cell.</p>
        </li>
      </ul>
      <img alt="IMAGE MISSING" src="tv_table_browser.gif"><br>
        <em>Figure
        1.7:
         
        The Table Browser Window.</em>
      
      <p>The successful appearance of the Table Browser window means that an image of
        the selected table has been created in the TV. It is this image
        that is shown in the Table Browser.
        </p>

      <h4>How Table Data Is Presented</h4>
        
        <p>Each object in the table is presented on a row of its own in the grid.
          Each element in the object is presented in a cell of its own.          <br>

          The colours on the <strong>vertical</strong> buttons to the left of the grid show the status
          of the object on that very row: a bright red colour indicates that the object just
          has been inserted (when the table is opened, all objects are regarded as being
          just inserted), while a bright green colour indicates that the object has been
          changed. The colour fades away, shade by shade, every time the actual table is polled,
          until the normal background colour is encountered.          <br>

          When an object has been deleted, the colour of the corresponding
          <strong>vertical button</strong> turns to black. The next time the table is polled, the
          object will be removed from the grid.</p>
        <img alt="IMAGE MISSING" src="tv_table_browser_updated.gif"><br>
          <em>Figure
        1.8:
         
        The Table Browser Window, with new, changed, and deleted objects.</em>
        
        <p>Normally, new objects are placed at the end of the grid, while all other objects
          maintain their positions between successive polls. However, when sorting mode has
          been ordered, all objects, even new ones, are placed at the correct position
          according to the sorting ordered (see also below).</p>
        <p>Immediately above the <strong>horizontal buttons</strong>, one or more <strong>keys</strong> may
          appear. These keys indicates which elements that are used as indices in the
          ETS/Mnesia table, i.e., which fields that are used by ETS/Mnesia as search keys when
          looking up data.</p>
        <p>The grid columns may be resized, by clicking and dragging on the small black <strong>resize areas</strong> between any two horizontal buttons.</p>
        <p>The rows are enumerated, as a help when navigating through the table. Note: it shall
          not be assumed that these numbers correspond to the placement of the objects in the
          <strong>actual table</strong>! The row numbers, as presented in the TV, are
          only temporary, and only valid within the TV!
                    <br>

          The number on the <strong>vertical scrollbar</strong> corresponds to the number the
          uppermost row has (or will have).</p>
        <p>The number shown on the horizontal scrollbar relates to the leftmost column shown.</p>
      

      <h4>How to Poll the Table</h4>
        
        <p>The table is polled whenever the <strong>Poll Table</strong> option in the <strong>Options</strong>
          menu is chosen (or the <strong>Poll Table</strong> toolbar button is pressed).           <br>

          The user may also choose to let the TV poll the table at regular
          intervals. This is done via the <strong>Set Poll Interval...</strong> option in the
          <strong>Options</strong> menu, which causes the <strong>Set Poll Interval window</strong> to appear. </p>
        <p>In the Set Poll Interval window the user selects whether manual or automatic
          polling shall be used, and, in the automatic polling case, the poll interval.</p>
        <img alt="IMAGE MISSING" src="set_poll_int.gif"><br>
          <em>Figure
        1.9:
         
        The Set Poll Interval Window.</em>
        
        <p>It shall be noted that, in the case of a large table (or a slow computer/operating
          system), a short poll interval may cause the TV to be flooded, i.e., the
          data resulting from one poll has not been fully treated and presented when the data from
          the next poll arrives. The user is therefore kindly requested to use the automatic
          polling facility with care!</p>
      

      <h4>How to Edit Objects in the Table</h4>
        
        <p>Provided that the table is writable for other processes than the owning process,
          the user may insert, change and delete objects.</p>
        <p>To <strong>delete</strong> an object, the corresponding row, or a single cell in the
          corresponding row, has to be chosen, by clicking either on the vertical button
          to the left of the row, or on a cell. Thereafter the <strong>Delete Object</strong>
          option in the <strong>Edit Menu</strong>
          is chosen. (Should the user regret the delete operation, the row may once again
          be selected, whereupon the <strong>Return</strong> button simply is pressed.)</p>
        <p>To <strong>insert</strong> an object, the user may use the <strong>Record Editor</strong>, or simply
          enter the object in the content and edit field, and then press the <strong>Return</strong>
          button.          <br>

          The <strong>Record Editor</strong> is started via the <strong>Edit Object</strong> option in the
          <strong>Edit</strong> menu, or via the <strong>Edit Object</strong> toolbar button. The editor that
          appears looks different depending on the kind of table: for Mnesia tables,
          a writable field is shown for each record entry, as well as the name of the entry.
          For ETS tables, only a writable field is shown; this is due to the fact that the
          size of the tuples inserted in ETS tables may vary, whereas the size of the records
          inserted in a Mnesia table (more or less) is fixed.
          One may select the next field in the record editor by pressing
          the 'Tab' (or 'Arrow Down') button, and select the previous field by pressing
          'Shift'+'Tab' (or 'Arrow Up').          <br>

          When the editing is finished, the <strong>OK</strong> button may be clicked, or
          'Return' pressed. The TV will then try to insert the new object.
          </p>
        <img alt="IMAGE MISSING" src="tv_record_editor_mnesia.gif"><br>
          <em>Figure
        1.10:
         
        The Record Editor (shown for a Mnesia table).</em>
        
        <p>To <strong>change</strong> an already existing object, the corresponding row, or a single cell
          in the corresponding row, has to be selected first (see below). Then one may edit the
          whole object (or the selected field in the object), either using the record editor
          or the content and edit field, whereupon 'Return' may be pressed (or the 'OK' button
          clicked).
          </p>
        <p>It shall be noted that it is hard to edit objects containing
          <strong>process identifiers</strong>, <strong>references</strong>, <strong>binaries</strong> and <strong>ports</strong>,
          since it is only a textual representation of these terms that is shown on the screen.
          It is in the general case impossible for the TV to correctly
          convert this textual representation back to the original term. As a courtesy to
          the user, an attempt to do this will nevertheless be done if the edited field
          consists of a single process identifier; however, this conversion will only be
          correct provided
          that the process identifier originates from the current Erlang session. (On
          the other hand, why on earth should any user want to store old process identifiers?)
          </p>
        <p>It shall also be noted that it may be more or less confusing to edit the table,
          depending on whether the table type is <strong>set</strong>, <strong>bag</strong>, or
          <strong>duplicate_bag</strong>, i.e., depending on whether or not objects having the
          same key (or even duplicate objects) are allowed. Please study the ETS or Mnesia
          manual pages, should confusion arise!
          </p>
      

      <h4>How to Search For Objects</h4>
        
        <p>One may search for an object, by choosing the <strong>Search Object</strong>
          option in the <strong>Options</strong> menu (or by pressing the <strong>Search Object</strong>
          toolbar button). In the <strong>Search Object window</strong> that appears, any valid
          Erlang term or regular expression may be entered, whereupon all objects
          containing (or consisting of) this term, or matching the regular expression,
          will be shown.</p>
        <img alt="IMAGE MISSING" src="tv_search_window.gif"><br>
          <em>Figure
        1.11:
         
        The Search Object Window.</em>
        
        <p>In the search result list, by clicking on any object, the Table Browser will
          immediately scroll to the corresponding row in the table shown. This enables
          the user to in a very powerful way quickly find the objects he's interested in.</p>
        <img alt="IMAGE MISSING" src="tv_search_result.gif"><br>
          <em>Figure
        1.12:
         
        The Search Object Window interworking with the Table Browser.</em>
        
      

      <h4>How to Mark Table Data</h4>
        
        <p>One may mark a row or a column by clicking on the buttons to the left and above
          the grid, respectively. A single cell is marked by clicking on it. Even empty
          rows and columns may be marked; an empty cell cannot be marked - on the contrary,
          by clicking on an empty cell, all marks are removed.</p>
        <p>Marks are indicated by a cyan blue colour.</p>
        <img alt="IMAGE MISSING" src="tv_row_marked.gif"><br>
          <em>Figure
        1.13:
         
        The TV Main Window: a row has been marked.</em>
        
        <p>When a row or a cell has been marked, the content will be shown in the content field,
          together with an indication of the row (and column when applicable) the marked area
          corresponds to. Should the object be very big, only a fraction of it may be shown in
          this field. By clicking on the down-arrow button to the right of the content and
          edit field, a pop-up content field will be shown, where the whole marked object
          may be viewed. The content of this pop-up field may be marked and copied to
          other windows; however, this field cannot be edited.</p>
        <img alt="IMAGE MISSING" src="tv_row_marked_popup.gif"><br>
          <em>Figure
        1.14:
         
        The Table Browser: the pop-up content field.</em>
        
        <p>It shall be noted that the user may choose whether lists shall be shown as
          strings or lists; this is done via the <strong>View</strong> menu.
          </p>
        <p>A marked column may be subject to sorting, see below. When sorting is ordered,
          marks are removed at each polling of the table (because of the difficulties to
          keep track of a certain object, or element, in this case).</p>
      

      <h4>How to Sort Table Data</h4>
        
        <p>The image of the table may be sorted in rising or falling order, using any element as
          sorting key. The element desired is chosen by marking the corresponding column, and
          then choose (either via the <strong>Options</strong> menu, or via the toolbar buttons) any
          of the sorting options available, i.e., sorting in ascending or descending order.
          The colour of the column button will then change to gold, to indicate that this
          column is the basis for the sorting currently chosen.</p>
        <p>Should no column have been marked, when sorting is ordered, the first element in each
          object (i.e, tuple) will be used as sorting key if the table is an ETS table; the
          second element (i.e., the first field in the record) will be used if the table is a
          Mnesia table.</p>
        <p>Even columns with no elements in them may be subject to sorting. In this case the
          whole object is used as the sorting key.</p>
        <p>When sorting is ordered, new elements will be inserted according to the current
          sorting mode. When the sorting is interrupted (via the <strong>No Sorting</strong> option),
          the current image of the table keep the current order, but new elements will from
          now on once again be inserted at the end of the image of the table.</p>
      

      <h4>How to Obtain Table Information</h4>
        
        <p>Information about the actual table is obtained via the <strong>File</strong> menu (or via the
          <strong>Table Info</strong> toolbar button). The information is printed in a separate window,
          with similar pieces of information grouped together on "flap cards" of their own.
          By clicking on a flap, the information on the corresponding card is made visible.</p>
        <img alt="IMAGE MISSING" src="info_window.gif"><br>
          <em>Figure
        1.15:
         
        The Table Information Window, showing information about a Mnesia table.</em>
        
        <p>The Table Information window may also be opened from the TV Main
          Window, by selecting a table and then choose the <strong>Table Info</strong> option
          in the <strong>File</strong> menu (or by double-clicking on the <strong>Table Size</strong>
          field.</p>
        <p>Note: The Table Information window will automatically be opened if the user tries
          to open an unreadable table, since this is the only information available in this
          case.</p>
      
    

    <h4>The Table Browser Menus</h4>
      
      <p>The Table Browser offers the following menus:</p>
      <p></p>

      <h4>The File Menu</h4>
        
        <dl>
          <dt><strong><strong>Table Info</strong></strong></dt>
          <dd>
            <p>Opens the Table Information window, which shows the available information
              about the current table. </p>
          </dd>
          <dt><strong><strong>Close</strong></strong></dt>
          <dd>
            <p>Closes the Table Browser window.</p>
          </dd>
        </dl>
      

      <h4>The Edit Menu</h4>
        
        <dl>
          <dt><strong><strong>Edit Object...</strong></strong></dt>
          <dd>
            <p>Opens the Record Editor. If an object is marked, it will be shown in
              the Record Editor.</p>
          </dd>
          <dt><strong><strong>Delete Object</strong></strong></dt>
          <dd>
            <p>Deletes a marked object.</p>
          </dd>
        </dl>
      

      <h4>The View Menu</h4>
        
        <dl>
          <dt><strong><strong>Lists As Lists</strong></strong></dt>
          <dd>
            <p>Causes lists in the table to be shown as lists.</p>
          </dd>
          <dt><strong><strong>Lists As Strings</strong></strong></dt>
          <dd>
            <p>Causes lists in the table to be shown as strings.</p>
          </dd>
        </dl>
      

      <h4>The Options Menu</h4>
        
        <dl>
          <dt><strong><strong>Poll Table</strong></strong></dt>
          <dd>
            <p>An explicit order to poll the table, i.e., to scan the content.</p>
          </dd>
          <dt><strong><strong>Poll Interval...</strong></strong></dt>
          <dd>
            <p>Choose between manual and automatic polling. In the case of automatic
              polling, the user gets the opportunity to choose the polling interval.</p>
          </dd>
          <dt><strong><strong>Search Object</strong></strong></dt>
          <dd>
            <p>Enables search for objects containing (or consisting of) a specified
              Erlang term, or matching a regular pattern. The search result may be used
              for quick navigation in the table.</p>
          </dd>
          <dt><strong><strong>Sort Ascending Order</strong></strong></dt>
          <dd>
            <p>Shows the table content sorted in ascending (i.e., rising) order.
              New objects will be shown with correct placement as long the as the sorting
              is going on.              <br>

              Please note that it is only the image of the table that is affected,
              <strong>not</strong> the table itself!</p>
          </dd>
          <dt><strong><strong>Sort Descending Order</strong></strong></dt>
          <dd>
            <p>Shows the table content sorted in descending (i.e., falling) order.
              New objects will be shown with correct placement as long the as the
              sorting is going on.</p>
          </dd>
          <dt><strong><strong>No Sorting</strong></strong></dt>
          <dd>
            <p>Sorting mode is left. New objects will be shown last in the
              table. However, older objects will remain in the position they had when
              the sorting mode was left, i.e., their placement will not reflect their
              actual placement in the ETS/Mnesia table.</p>
          </dd>
        </dl>
      

      <h4>The Help Menu</h4>
        
        <dl>
          <dt><strong><strong>Help</strong></strong></dt>
          <dd>
            <p>Shows the help (about TV usage) that is available.
              (The help will be shown in the Netscape Internet browser, if available.)</p>
          </dd>
          <dt><strong><strong>OTP Documentation</strong></strong></dt>
          <dd>
            <p>Shows the Documentation about all OTP components that is available
              in the local installation of OTP.</p>
          </dd>
        </dl>
      
    
  

  <h3><a name="id62107">1.6 
        Tracing the Owner Process</a></h3>
    
    <p>The process owning the table may easily be traced, by selecting either
      the <strong>Owner Pid</strong> or the <strong>Owner Name</strong> field, and then choosing
      the <strong>Trace Process</strong> option in the <strong>File</strong> menu.       <br>

      (It is also possible to double-click on any of these fields.)</p>
  

  <h3><a name="id62136">1.7 
        Creating a New Table</a></h3>
    
    <p>A new table may easily be created using the <strong>New Table window</strong>.
      Currently only ETS tables may be created. Since ETS tables
      dies together with the parent process, a special process, registered
      as <strong>tv_table_owner</strong>, will be the owner of tables created this way.
      This process will not be affected by any termination of the TV,
      i.e., the ETS tables created will live on until they are explicitly killed.
      </p>
    <img alt="IMAGE MISSING" src="tv_create_table.gif"><br>
      <em>Figure
        1.16:
         
        The New Table Window, enabling easy creation of ETS tables.</em>
    
    <p>Note: the <strong>tv_table_owner</strong> is local to each node, meaning
      that the creation of a table on a new node also will start such a process
      on that node. This way only the tables on a specific node dies, should that
      specific node crash.</p>
  

  <h3><a name="id62177">1.8 
        The TV Main Window Menus</a></h3>
    
    <p>The Main Window offers the following menus:</p>
    <p></p>

    <h4>The File Menu</h4>
      
      <dl>
        <dt><strong><strong>Open Table</strong></strong></dt>
        <dd>
          <p>Open a selected table in a new Table Browser.</p>
        </dd>
        <dt><strong><strong>New Table</strong></strong></dt>
        <dd>
          <p>Open the New Table window, enabling easy creation of ETS tables.</p>
        </dd>
        <dt><strong><strong>Table Info</strong></strong></dt>
        <dd>
          <p>Opens the Table Information window, showing the available
            information about a selected table. </p>
        </dd>
        <dt><strong><strong>Nodes...</strong></strong></dt>
        <dd>
          <p>Open the Connected Nodes window, enabling the user to view
            tables residing on remote nodes.</p>
        </dd>
        <dt><strong><strong>Trace Process</strong></strong></dt>
        <dd>Opens a trace window, where the process owning a selected table can
         be traced.</dd>
        <dt><strong><strong>Exit</strong></strong></dt>
        <dd>
          <p>Terminates the TV.</p>
        </dd>
      </dl>
    

    <h4>The View Menu</h4>
      
      <dl>
        <dt><strong><strong>ETS Tables</strong></strong></dt>
        <dd>
          <p>Shows ETS tables on the current node.</p>
        </dd>
        <dt><strong><strong>Mnesia tables</strong></strong></dt>
        <dd>
          <p>Shows Mnesia tables on the current node.</p>
        </dd>
      </dl>
    

    <h4>The Options Menu</h4>
      
      <dl>
        <dt><strong><strong>Refresh</strong></strong></dt>
        <dd>
          <p>An explicit order to once again check the current node for existing
            tables, and list them.</p>
        </dd>
        <dt><strong><strong>Unreadable Tables</strong></strong></dt>
        <dd>
          <p>Option to choose whether or not unreadable tables shall be shown.</p>
        </dd>
        <dt><strong><strong>System Tables</strong></strong></dt>
        <dd>
          <p>Option to choose whether or not system tables shall be shown.</p>
        </dd>
        <dt><strong><strong>Sort by Name</strong></strong></dt>
        <dd>
          <p>Shows the tables sorted by their names.</p>
        </dd>
        <dt><strong><strong>Sort by Id</strong></strong></dt>
        <dd>
          <p>Shows the tables sorted by their table identifiers.</p>
        </dd>
        <dt><strong><strong>Sort by Owner PID</strong></strong></dt>
        <dd>
          <p>Shows the tables sorted by the process identifiers of the owning
            processes.</p>
        </dd>
        <dt><strong><strong>Sort by Owner Name</strong></strong></dt>
        <dd>
          <p>Shows the tables sorted by the registered names of the owning processes.</p>
        </dd>
        <dt><strong><strong>Error Messages in Haiku</strong></strong></dt>
        <dd>
          <p>Option to choose whether or not error messages shall be shown
            in the Japanes poetry style called <strong>Haiku</strong>.</p>
        </dd>
      </dl>
    

    <h4>The Help Menu</h4>
      
      <dl>
        <dt><strong><strong>Help</strong></strong></dt>
        <dd>
          <p>Shows the help (about TV usage) that is available.
            (The help will be shown in the Netscape Internet browser, if available.)</p>
        </dd>
        <dt><strong><strong>OTP Documentation</strong></strong></dt>
        <dd>
          <p>Shows the Documentation about all OTP components that is available
            in the local installation of OTP.</p>
        </dd>
      </dl>
    
  
</div>
<div class="footer">
<hr>
<p>Copyright © 1997-2012 Ericsson AB. All Rights Reserved.</p>
</div>
</div>
</div></body>
</html>