在全新安装 XAMPP 并从我的 linux live db 导入到 windows 开发阶段后,我开始遇到INSERT. 其他一切似乎都运行良好。
我得到的错误mysql_error.log是:
2013-08-15 12:44:49 16c0 InnoDB: Error: Table "mysql"."innodb_table_stats" not found.
2013-08-15 12:44:49 16c0 InnoDB: Recalculation of persistent statistics requested for table "sizaradb"."pages" but the required persistent statistics storage is not present or is corrupted. Using transient stats instead.
2013-08-15 12:44:59 16c0 InnoDB: Error: Table "mysql"."innodb_table_stats" not found.
2013-08-15 12:44:59 16c0 InnoDB: Recalculation of persistent statistics requested for table "sizaradb"."translations" but the required persistent statistics storage is …Run Code Online (Sandbox Code Playgroud) 我希望开始将一些 MyISAM 表转换为 INNODB。运行带有 MySQL 5.6 的 Ubuntu 14.04 服务器(apt-get 从 5.5 升级),4 核/8 线程 cpu 上的 32G ram。一开始有问题...
could not open single-table tablespace file .\mysql\innodb_index_stats.ibd after restart of MySQL
Run Code Online (Sandbox Code Playgroud)
和
Error: Table "mysql"."innodb_table_stats" not found.
Run Code Online (Sandbox Code Playgroud)
我遵循了 Rolando 发布的建议,并且数据库不再崩溃或创建一个巨大的 error.log。 (以上问题都没有了,只描述主要事件)
现在,在将任何内容转换为 INNODB 之前,我担心以下错误。联邦可以从我读到的内容中忽略,下面的第二行(也是这篇文章的主题)与我有关
2014-05-19 01:50:57 30950 [Note] Plugin 'FEDERATED' is disabled.
2014-05-19 01:50:57 30950 [ERROR] Function 'innodb' already exists
2014-05-19 01:50:57 30950 [Warning] Couldn't load plugin named 'innodb' with soname 'ha_innodb.so'.
2014-05-19 01:50:57 30950 …Run Code Online (Sandbox Code Playgroud) 我计划在 CentOS 6.5 机器上运行我的 MySQL DB ver5.1.73 到 MySQL 5.6.21。
我根据我在 StackOverflow 上阅读的内容了解了此操作的基本过程,但我很好奇是否有人在使用 5.1 到 5.6 路线时遇到任何特定问题?
我听说过的一个是某些 TIMESTAMP 列可能会以不正确的时间戳结束。但我很好奇是否还有其他人听说过或遇到过的。
为了缩小我关心的问题,我只关心可能存在数据丢失或一致性问题的任何事情
谢谢!是
我遇到了同样的错误,尽管我正在运行具有 3 个节点的 galera 集群。我尝试按照InnoDB的说明进行操作:错误:升级到 mysql 5.6 后找不到表“mysql”.“innodb_table_stats”,但是当我进入运行 create 语句的步骤时,出现以下错误:
Error Code: 1813. Tablespace for table '`mysql`.`innodb_index_stats`' exists.
Please DISCARD the tablespace before IMPORT.
Run Code Online (Sandbox Code Playgroud)
这对我来说毫无意义,当我尝试使用
drop tablespace `innodb_index_stats`;
Run Code Online (Sandbox Code Playgroud)
我收到一个 SQL sysntax 错误。