-- status.txt

STATUS shows statistics related to the current session, while SHOW STATUS shows statistics for the entire server.

STATUS
--------------
mysql  Ver 14.12 Distrib 5.0.41, for pc-linux-gnu (i686) using readline 5.0

Connection id:		9
Current database:
Current user:		s1@localhost
SSL:				Not in use
Current pager:		stdout
Using outfile:		''
Using delimiter:		;
Server version:		5.0.45-community MySQL Community Edition (GPL)
Protocol version:		10
Connection:			Localhost via UNIX socket
Server characterset:	latin1
Db     characterset:	latin1
Client characterset:	latin1
Conn.  characterset:	latin1
UNIX socket:		/var/lib/mysql/mysql.sock
Uptime:			32 min 38 sec

Threads: 1  Questions: 63  Slow queries: 0  Opens: 23  Flush tables: 1  Open tables: 17  Queries per second avg: 0.032
--------------

SHOW STATUS;
+---------------------------+-------------+
| Variable_name             | Value       |
+---------------------------|-------------+
| Aborted_clients           | 0           |
| Aborted_connects          | 1           |
| Binlog_cache_disk_use     | 0           |
| Binlog_cache_use          | 0           |
| Bytes_received            | 311         |
| Bytes_sent                | 6547        |
[about 200 more rows]
| Threads_created           | 9           |
| Threads_running           | 1           |
| Uptime                    | 2638        |
| Uptime_since_flush_status | 2638        |
+---------------------------+-------------+
230 rows in set (0.01 sec)