从MySQL 5开始, 你可以看到多了一个系统数据库information_schema . information_schema 存贮了其他所有数据库的信息。让我们来看看几个使用这个数据库的例子:
<!--more-->
1. 取得关于 information_schema的基本信息
information_schema是一个虚拟数据库,并不物理存在,在select的时候,从其他数据库获取相应的信息。
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| bugs |
| mysql |
| sugarcrm |
+--------------------+
4 rows in set (0.00 sec)
以下是information_schema数据库中的表.
mysql> use information_schema;
mysql> show tables;
+---------------------------------------+
| Tables_in_information_schema |
+---------------------------------------+
| CHARACTER_SETS |
| COLLATIONS |
| COLLATION_CHARACTER_SET_APPLICABILITY |
| COLUMNS |
| COLUMN_PRIVILEGES |
| KEY_COLUMN_USAGE |
| PROFILING |
| ROUTINES |
| SCHEMATA |
| SCHEMA_PRIVILEGES |
| STATISTICS |
| TABLES |
| TABLE_CONSTRAINTS |
| TABLE_PRIVILEGES |
| TRIGGERS |
| USER_PRIVILEGES |
| VIEWS |
+---------------------------------------+
17 rows in set (0.00 sec)
2. 查询表中数据超过1000行的表
以下的语句可以查出超过1000行数据的表
mysql> select concat(table_schema,'.',table_name) as table_name,table_rows
-> from information_schema.tables where table_rows > 1000
-> order by table_rows desc;
+----------------------------------+------------+
| table_name | table_rows |
+----------------------------------+------------+
| bugs.series_data | 52778 |
| bugs.bugs_activity | 26436 |
| bugs.longdescs | 21473 |
| bugs.email_setting | 5370 |
| bugs.attachments | 4714 |
| bugs.attach_data | 4651 |
| bugs.cc | 4031 |
| bugs.bugs | 2190 |
| bugs.namedqueries_link_in_footer | 1228 |
+----------------------------------+------------+
9 rows in set (0.04 sec)
3. 查询所有没有主键的表
This example gives a list of all the tables without primary key.
SELECT CONCAT(t.table_name,".",t.table_schema) as table_name
FROM information_schema.TABLES t
LEFT JOIN information_schema.TABLE_CONSTRAINTS tc
ON t.table_schema = tc.table_schema
AND t.table_name = tc.table_name
AND tc.constraint_type = 'PRIMARY KEY'
WHERE tc.constraint_name IS NULL
AND t.table_type = 'BASE TABLE';
4. 实现表的历史数据information_schema
Putting the MySQL information_schema to Use article implements a history database using the information schema. The first half of this article describes the requirements for the history database, and a generic design to implement it. The second half describes the stepwise construction of code-generator that creates the SQL to construct and load the history database. The code-generator is driven by the information schema and some features of the information schema are discussed in detail.
5. 查询5个嘴大表
mysql> SELECT concat(table_schema,'.',table_name) table_name,
-> concat(round(data_length/(1024*1024),2),'M') data_length
-> FROM information_schema.TABLES
-> ORDER BY data_length DESC LIMIT 5;
+--------------------+-------------+
| table_name | data_length |
+--------------------+-------------+
| bugs.attach_data | 706.89M |
| bugs.longdescs | 3.45M |
| bugs.bugs_activity | 1.45M |
| bugs.series_data | 0.75M |
| bugs.attachments | 0.51M |
+--------------------+-------------+
5 rows in set (0.05 sec)
分享到:
相关推荐
### MySQL中的information_schema详解 在使用MySQL的过程中,我们经常会遇到一个名为`information_schema`的数据库。这个数据库在MySQL安装时自动生成,并且对于理解和管理MySQL系统具有重要作用。本文将详细介绍`...
mysql -uroot -pxxxx -D information_schema -e "SELECT TABLE_SCHEMA, table_name FROM tables WHERE table_schema LIKE 'hsm_syslog_%'" ``` 这里的参数`-u`指定用户名,`-p`后面跟随密码,`-D`指定了数据库,`-e`...
MySQL数据库中的`information_schema`和`mysql`数据库是系统核心组成部分,它们对于数据库的正常运行至关重要,因此绝对不应该被删除。 `information_schema`数据库是一个特殊的虚拟数据库,它并不存储实际的数据,...
在MySQL中,`information_schema`是一个特殊的数据库,它包含了所有数据库服务器中的元数据信息,比如表、列、索引和权限等。用户通常可以通过查询`information_schema`来获取数据库的相关信息,例如表结构、约束等...
信息架构数据库(information_schema)是 MySQL 5 以上自带的系统数据库,它存放了 MySQL 服务器中所有数据库、表及其列的信息。该数据库相当于一个数据字典,提供了关于 MySQL 服务器所维护的所有其他数据库的信息...
MySQL的information_schema数据库是MySQL 5.0版本后引入的一个非常重要的工具,它是一个虚拟的数据库,虽然在物理上并不存在,但提供了丰富的元数据信息,帮助用户了解和管理数据库。这个数据库就像一个数据字典,...
### 22.12 The INFORMATION_SCHEMA ndb_transid_mysql_connection_map Table 该表用于跟踪 NDB 存储引擎的事务 ID 映射。这对于使用 NDB 存储引擎的应用程序尤为重要。 ### 22.13 The INFORMATION_SCHEMA ...
Coinciding with the new native data dictionary in MySQL 8.0, we have made a number of useful enhancements to our INFORMATION_SCHEMA subsystem design in MySQL 8.0. In this post I will first go th
同时,`information_schema`是另一个重要的内置数据库,包含所有数据库对象的元数据,如表、列、索引等信息,而`mysql`数据库则包含了系统和管理相关的表。 总的来说,`performance_schema`是MySQL提供的一种强大...
MYSQL 系统表 information_schema 详解 MYSQL 系统表 information_schema 中的关键信息是 MYSQL 站点进行渗透时快速定位重要信息的重要依据。下面是对 information_schema 中的各种表的详细解释: All_Tables 表 ...
代码如下:select TABLE_SCHEMA, concat(truncate(sum(data_length)/1024/1024,2),’ MB’) as data_size,concat(truncate(sum(index_length)/1024/1024,2),’MB’) as index_sizefrom information_schema.tables...
`INFORMATION_SCHEMA.STATISTICS`表中包含了关于MySQL中所有表的索引统计信息,包括索引名称、索引类型、索引列等。 #### 三、解读`INFORMATION_SCHEMA.STATISTICS`表 `INFORMATION_SCHEMA.STATISTICS`表包含了多...
sys 数据库是 MySQL 的系统数据库,主要是通过视图的形式把 information_schema 和 performance_schema 结合起来,帮助系统管理员和开发人员监控 MySQL 的技术性能。 在 MySQL 中,可以使用 `SHOW DATABASES;` 命令...
MySQL 系统库主要包括 performance_schema、information_schema 和 sys三个数据库。 performance_schema 数据库是 MySQL 服务器的一个性能监控,主要保存 MySQL 服务器运行过程中的状态信息,包括统计最近执行了...
- 使用`information_schema.global_status`中的`UPTIME`变量可以检查MySQL的运行时间。如果MySQL经常重启,可能会导致其他监控工具无法检测到这一情况。 #### 三、Nagios插件介绍 Nagios是一款广泛使用的网络监控...
在MySQL中,INFORMATION_SCHEMA数据库提供了访问数据库元数据的途径。 1. INFROMATION_SCHEMA.SCHEMATA表 INFORMATION_SCHEMA.SCHEMATA表包含了数据库中所有数据库的信息,例如数据库名和数据库的默认字符集。 2. ...