db_stat.html   [plain text]


<!--$Id: db_stat.so,v 10.49 2008/03/26 15:45:51 mbrey Exp $-->
<!--Copyright (c) 1997,2008 Oracle.  All rights reserved.-->
<!--See the file LICENSE for redistribution information.-->
<html>
<head>
<title>Berkeley DB: db_stat</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
</head>
<body bgcolor=white>
<table width="100%"><tr valign=top>
<td>
<b>db_stat</b>
</td>
</tr></table>
<hr size=1 noshade>
<tt>
<b><pre>db_stat <b>-d</b> <b>file</b> [<b>-fN</b>] [<b>-h home</b>] [<b>-P password</b>] [<b>-s database</b>]
db_stat [<b>-cEelmNrtVxZ</b>] [<b>-C Aclop</b>] [<b>-h home</b>] [<b>-L A</b>] [<b>-M A</b>] [<b>-R A</b>] [<b>-P password</b>]</pre></b>
<b>Description</b>
<a name="2"><!--meow--></a>
<p>The db_stat utility displays statistics for Berkeley DB environments.</p>
<p>The options are as follows:</p>
<br>
<b>-C</b><ul compact><li>Display detailed information about the locking subsystem.
<br>
<b>A</b><ul compact><li>Display all information.</ul>
<b>c</b><ul compact><li>Display lock conflict matrix.</ul>
<b>l</b><ul compact><li>Display lockers within hash chains.</ul>
<b>o</b><ul compact><li>Display lock objects within hash chains.</ul>
<b>p</b><ul compact><li>Display locking subsystem parameters.</ul>
<br></ul>
<b>-c</b><ul compact><li>Display locking subsystem statistics, as described in <a href="../api_c/lock_stat.html">DB_ENV-&gt;lock_stat</a>.</ul>
<b>-d</b><ul compact><li>Display database statistics for the specified file, as described in
<a href="../api_c/db_stat.html">DB-&gt;stat</a>.
<p>If the database contains multiple databases and the <b>-s</b> flag is
not specified, the statistics are for the internal database that describes
the other databases the file contains, and not for the file as a whole.</p></ul>
<b>-E</b><ul compact><li>Display detailed information about the database environment.</ul>
<b>-e</b><ul compact><li>Display information about the database environment, including
all configured subsystems of the database environment.</ul>
<b>-f</b><ul compact><li>Display only those database statistics that can be
acquired without traversing the database.</ul>
<b>-h</b><ul compact><li>Specify a home directory for the database environment; by
default, the current working directory is used.</ul>
<b>-l</b><ul compact><li>Display logging subsystem statistics, as described in <a href="../api_c/log_stat.html">DB_ENV-&gt;log_stat</a>.</ul>
<b>-M</b><ul compact><li>Display detailed information about the cache.</ul>
<br>
<b>A</b><ul compact><li>Display all information.</ul>
<b>h</b><ul compact><li>Display buffers within hash chains.</ul>
<br>
<b>-m</b><ul compact><li>Display cache statistics, as described in <a href="../api_c/memp_stat.html">DB_ENV-&gt;memp_stat</a>.</ul>
<b>-N</b><ul compact><li>Do not acquire shared region mutexes while running.  Other problems,
such as potentially fatal errors in Berkeley DB, will be ignored as well.
This option is intended only for debugging errors, and should not be
used under any other circumstances.</ul>
<b>-P</b><ul compact><li>Specify an environment password.  Although Berkeley DB utilities overwrite
password strings as soon as possible, be aware there may be a window of
vulnerability on systems where unprivileged users can see command-line
arguments or where utilities are not able to overwrite the memory
containing the command-line arguments.</ul>
<b>-R</b><ul compact><li>Display detailed information about the replication subsystem.</ul>
<br>
<b>A</b><ul compact><li>Display all information.</ul>
<br>
<b>-r</b><ul compact><li>Display replication statistics, as described in <a href="../api_c/rep_stat.html">DB_ENV-&gt;rep_stat</a>.</ul>
<b>-s</b><ul compact><li>Display statistics for the specified database contained in the file
specified with the <b>-d</b> flag.</ul>
<b>-t</b><ul compact><li>Display transaction subsystem statistics, as described in <a href="../api_c/txn_stat.html">DB_ENV-&gt;txn_stat</a>.</ul>
<b>-V</b><ul compact><li>Write the library version number to the standard output, and exit.</ul>
<b>-x</b><ul compact><li>Display mutex subsystem statistics, as described in <a href="../api_c/mutex_stat.html">DB_ENV-&gt;mutex_stat</a>.</ul>
<b>-Z</b><ul compact><li>Reset the statistics after reporting them; valid only with the <b>-C</b>,
<b>-c</b>, <b>-E</b>, <b>-e</b>, <b>-L</b>, <b>-l</b>,
<b>-M</b>, <b>-m</b>, <b>-R</b>, <b>-r</b>, and <b>-t</b>
options.</ul>
<br>
<p>Values normally displayed in quantities of bytes are displayed as a
combination of gigabytes (GB), megabytes (MB), kilobytes (KB), and bytes
(B).  Otherwise, values smaller than 10 million are displayed without
any special notation, and values larger than 10 million are displayed
as a number followed by "M".</p>
<p>The db_stat utility may be used with a Berkeley DB environment (as described for the
<b>-h</b> option, the environment variable <b>DB_HOME</b>, or
because the utility was run in a directory containing a Berkeley DB
environment).  In order to avoid environment corruption when using a
Berkeley DB environment, db_stat should always be given the chance to
detach from the environment and exit gracefully.  To cause db_stat
to release all environment resources and exit cleanly, send it an
interrupt signal (SIGINT).</p>
<p>The db_stat utility exits 0 on success, and &gt;0 if an error occurs.</p>
<br><b>Environment Variables</b>
<br>
<b>DB_HOME</b><ul compact><li>If the <b>-h</b> option is not specified and the environment variable
DB_HOME is set, it is used as the path of the database home, as described
in <a href="../api_c/env_open.html">DB_ENV-&gt;open</a>.</ul>
<br>
</tt>
<p><font size=1>Copyright (c) 1996,2008 Oracle.  All rights reserved.</font>
</body>
</html>