当前位置:Gxlcms > mysql > MySQL在Windows和Linux下还原数据库_MySQL

MySQL在Windows和Linux下还原数据库_MySQL

时间:2021-07-01 10:21:17 帮助过:2人阅读

Linux下还原数据库代码:

1,创建一个空的数据库cddl
mysql> create database cddl;
Query OK, 1 row affected (0.00 sec)

2,还原数据库
[root@chicago mysqlsoftware]# cd /etc/rc.d/init.d
[root@chicago mysqlsoftware]# cd /etc/rc.d/init.d
[root@chicago init.d]# mysql -h 192.168.92.100 -uroot -ppassword cddl< /mysqlsoftware/cddl20140703.sql
Warning: Using a password on the command line interface can be insecure.

Windows下还原数据库代码:


1,创建一个空的数据库mydb
2,run-->cmd->cd C:/Program Files/MySQL/MySQL Server 5.5/bin
3,mysql -h 192.168.92.100 -uroot -ppassword mydb< d:/cddl20140703.sql

人气教程排行