2

像往常一样,我使用 PMA 完成了完全导出。现在,当我尝试导入转储的数据时,出现此错误:

#1044 - 用户 'root'@'localhost' 拒绝访问数据库 'information_schema'

这是怎么回事?

4

2 回答 2

2

确保您的转储不包含 CREATE DATABASE information_schema, Information_Schema 不是您应该创建的东西。可能会或可能不会帮助你!

于 2013-03-09T02:39:09.293 回答
1

information_schema 数据库中的每个表都是一个 TEMPORARY MEMORY TABLE

例如,通知information_schema.tables

mysql> show create table information_schema.tables\G
*************************** 1. row ***************************
       Table: TABLES
Create Table: CREATE TEMPORARY TABLE `TABLES` (
  `TABLE_CATALOG` varchar(512) NOT NULL DEFAULT '',
  `TABLE_SCHEMA` varchar(64) NOT NULL DEFAULT '',
  `TABLE_NAME` varchar(64) NOT NULL DEFAULT '',
  `TABLE_TYPE` varchar(64) NOT NULL DEFAULT '',
  `ENGINE` varchar(64) DEFAULT NULL,
  `VERSION` bigint(21) unsigned DEFAULT NULL,
  `ROW_FORMAT` varchar(10) DEFAULT NULL,
  `TABLE_ROWS` bigint(21) unsigned DEFAULT NULL,
  `AVG_ROW_LENGTH` bigint(21) unsigned DEFAULT NULL,
  `DATA_LENGTH` bigint(21) unsigned DEFAULT NULL,
  `MAX_DATA_LENGTH` bigint(21) unsigned DEFAULT NULL,
  `INDEX_LENGTH` bigint(21) unsigned DEFAULT NULL,
  `DATA_FREE` bigint(21) unsigned DEFAULT NULL,
  `AUTO_INCREMENT` bigint(21) unsigned DEFAULT NULL,
  `CREATE_TIME` datetime DEFAULT NULL,
  `UPDATE_TIME` datetime DEFAULT NULL,
  `CHECK_TIME` datetime DEFAULT NULL,
  `TABLE_COLLATION` varchar(32) DEFAULT NULL,
  `CHECKSUM` bigint(21) unsigned DEFAULT NULL,
  `CREATE_OPTIONS` varchar(255) DEFAULT NULL,
  `TABLE_COMMENT` varchar(2048) NOT NULL DEFAULT ''
) ENGINE=MEMORY DEFAULT CHARSET=utf8
1 row in set (0.00 sec)

mysql>

另外,请注意,每当您使用 --all-databases 运行 mysqldump 时,information_schema永远不会显示。

information_schema 数据库的唯一目的是存储物理文件的元数据和数据库中表的逻辑描述。每当您运行service mysql start时,mysqld 都会创建所有 information_schema 表。之后,mysqld 用有关物理文件的信息填充这些临时内存表。

在重新加载数据库方面,请让 mysqld 处理 information_schema 数据库。请参阅我在 2011 年 6 月 15 日发布的关于 MySQL information_schema 的 DBA StackExchange 帖子。

于 2013-03-09T04:39:16.990 回答