Home > Database > Mysql Tutorial > MYSQL使用.frm恢复数据表结构的实现方法_MySQL

MYSQL使用.frm恢复数据表结构的实现方法_MySQL

WBOY
Release: 2016-06-01 13:20:02
Original
884 people have browsed it

bitsCN.com 我们都知道当我们建立数据表(innodb或myisam)时,会生成相应的文件(如:MYD,MYI,frm)
在这里,我们探讨下使用frm文件恢复 innodb和myisam类型表的结构,不过由于他们存储引擎的特性,所以恢复的方法也不一样,以下是详细的恢复过程。

myisamchk "xxx.frm" myisamchk 可以试出来,库是不是 myisam 类型

1:恢复innodb类型数据表结构
我们先从test数据目录 copy一个innodb.frm文件到另外一个库(innodb)

mysql> USE innodb;
mysql> DATABASE changed
mysql> SHOW CREATE TABLE innodb;
ERROR 1146 (42S02): TABLE 'innodb.innodb' doesn't exist

说明拷贝过来的文件是不能直接使用的,然后我们建立另外一个库(tmp),并在这个库里建立一个innodb类型的表


mysql> CREATE DATABASE tmp;
mysql> CREATE TABLE innodb (`id` int(11) NOT NULL) ) ENGINE=InnoDB
DEFAULT CHARSET=utf8;


然后我们copy innodb下的 innodb.frm 到 tmp数据目录下,并覆盖tmp目录下的innodb.frm
下面我们 restart mysql 试试

mysql> SHOW CREATE TABLE innodb /G;
*************************** 1. row **********
TABLE: innodb
CREATE TABLE: CREATE TABLE `innodb` (
`dd` varchar(1) NOT NULL,
`cc` varchar(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8
1 row IN SET (0.00 sec)
ERROR:
No query specified
mysql> INSERT INTO innodb (dd,cc) value (1,2);
mysql> Query OK, 1 row affected (0.00 sec)
mysql> SELECT * FROM innodb;
ERROR 2013 (HY000): Lost connection TO MySQL server during query


所以数据结构是可以看到的,但是不可以查询,好了,这就是使用.frm恢复 innodb类型的表结构
2:恢复myisam类型数据表结构
恢复myisam类型的就简单多了,我看下面步骤
首先还是和上面一样,从test数据目录下 copy一个test.frm 到 tmp库的数据目录

mysql> USE tmp;
mysql> SHOW CREATE TABLE test;
ERROR 1017 (HY000): Can't find file: 'test' (errno: 2)

提示找不到文件,下面我们来处理错误,在tmp数据目录下建立 test.MYI 和 temp.MYD 文件,然后我们使用mysql自带的修复表命令

mysql> repair TABLE test USE_FRM;
+------------------+--------+----------+----------+
| TABLE | Op | Msg_type | Msg_text |
+------------------+--------+----------+----------+
| test.test_myisam | repair | STATUS | OK |
+------------------+--------+----------+----------+
1 row IN SET (0.00 sec)

mysql> SHOW CREATE TABLE test /G;
*************************** 1. row **********
TABLE: test
CREATE TABLE: CREATE TABLE `test` (
`dd` varchar(1) NOT NULL,
`cc` varchar(1) NOT NULL
) ENGINE=myisam DEFAULT CHARSET=utf8
1 row IN SET (0.00 sec)
ERROR:
No query specified
mysql> INSERT INTO test (dd,cc) value(1,2);
Query OK, 1 row affected (0.00 sec)
mysql> SELECT * FROM test;
+------+
| dd | cc
+------+
| 1 |2
+------+
1 row IN SET (0.00 sec)


好了,这个表结构也看到了bitsCN.com

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template