【MySQL】測試Windows版本的MySQL伺服器是否工作

secooler發表於2009-04-05
1.檢視MySQL資料庫中包含那些資料庫
C:\>C:\"Program Files"\MySQL\"MySQL Server 5.0"\bin\mysqlshow
+--------------------+
|     Databases      |
+--------------------+
| information_schema |
| mysql              |
| test               |
+--------------------+

2.檢視mysql資料庫中包含哪些表
C:\>C:\"Program Files"\MySQL\"MySQL Server 5.0"\bin\mysqlshow -u root -pmysql mysql
Database: mysql
+---------------------------+
|          Tables           |
+---------------------------+
| columns_priv              |
| db                        |
| func                      |
| help_category             |
| help_keyword              |
| help_relation             |
| help_topic                |
| host                      |
| proc                      |
| procs_priv                |
| tables_priv               |
| time_zone                 |
| time_zone_leap_second     |
| time_zone_name            |
| time_zone_transition      |
| time_zone_transition_type |
| user                      |
+---------------------------+

3.檢視MySQL版本資訊
C:\>C:\"Program Files"\MySQL\"MySQL Server 5.0"\bin\mysqladmin version status proc
C:\Program Files\MySQL\MySQL Server 5.0\bin\mysqladmin  Ver 8.41 Distrib 5.0.77, for Win32 on ia32
Copyright (C) 2000-2006 MySQL AB
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license

Server version          5.0.77-community-nt
Protocol version        10
Connection              localhost via TCP/IP
TCP port                3306
Uptime:                 9 min 54 sec

Threads: 1  Questions: 16  Slow queries: 0  Opens: 12  Flush tables: 1  Open tables: 6  Queries per second avg: 0.027
Uptime: 594  Threads: 1  Questions: 16  Slow queries: 0  Opens: 12  Flush tables: 1  Open tables: 6  Queries per second avg: 0.027
+----+------+----------------+----+---------+------+-------+------------------+
| Id | User | Host           | db | Command | Time | State | Info             |
+----+------+----------------+----+---------+------+-------+------------------+
| 10 | ODBC | localhost:2442 |    | Query   | 0    |       | show processlist |
+----+------+----------------+----+---------+------+-------+------------------+


4.使用“mysql test”測試資料庫是否可以訪問
C:\>C:\"Program Files"\MySQL\"MySQL Server 5.0"\bin\mysql test
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 11
Server version: 5.0.77-community-nt MySQL Community Edition (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

-- The End --

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/519536/viewspace-584672/,如需轉載,請註明出處,否則將追究法律責任。

相關文章