mysql5的sql文件导入到mysql4的方法_PHP教程
程序员文章站
2024-01-10 15:15:31
...
1、将mysql5里导出的sql文件导入到mysql5中。
2、用mysqldump -uroot -p1234 --opt --compatible=mysql40 -A -re:\localhost.sql
--compatible=name参数描述如下:
--compatible=name Change the dump to be compatible with a given mode. By
default tables are dumped in a format optimized for
MySQL. Legal modes are: ansi, mysql323, mysql40,
postgresql, oracle, mssql, db2, maxdb, no_key_options,
no_table_options, no_field_options. One can use several
modes separated by commas. Note: Requires MySQL server
version 4.1.0 or higher. This option is ignored with
earlier server versions.
3、将e:\localhost.sql导入mysql4,如mysql命令行中
source e:\localhost.sql
2、用mysqldump -uroot -p1234 --opt --compatible=mysql40 -A -re:\localhost.sql
--compatible=name参数描述如下:
--compatible=name Change the dump to be compatible with a given mode. By
default tables are dumped in a format optimized for
MySQL. Legal modes are: ansi, mysql323, mysql40,
postgresql, oracle, mssql, db2, maxdb, no_key_options,
no_table_options, no_field_options. One can use several
modes separated by commas. Note: Requires MySQL server
version 4.1.0 or higher. This option is ignored with
earlier server versions.
3、将e:\localhost.sql导入mysql4,如mysql命令行中
source e:\localhost.sql
推荐阅读
-
mysql5的sql文件导入到mysql4的方法_PHP教程
-
php使用simplexml_load_file加载XML文件并显示XML的方法_PHP教程
-
解析PHP生成静态html文件的三种方法_PHP教程
-
PHP开发中常见的安全问题详解和解决方法(如Sql注入、CSRF、Xss、CC等)_PHP教程
-
php使用gzip压缩传输js和css文件的方法,_PHP教程
-
php无法上传大文件的解决方法_PHP教程
-
php计算一个文件大小的方法_PHP教程
-
探讨php中防止SQL注入最好的方法是什么_PHP教程
-
PHP安全下载文件的方法,_PHP教程
-
PHP 文件上传进度条的两种实现方法的代码_PHP教程