本文为大家讲解的是高版本的mysql生成的sql文件导入到低版本mysql中的方法,感兴趣的同学参考下. 有时候用到将高版本的数据库转移到低版本的数据库中,下面是mysql5数据转到mysql4的方法 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_op
本文为大家讲解的是高版本的mysql生成的sql文件导入到低版本mysql中的方法,感兴趣的同学参考下.
有时候用到将高版本的数据库转移到低版本的数据库中,下面是mysql5数据转到mysql4的方法
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
标签: mysql5 sql 文件 导入 mysql4 方法
声明:本文内容来源自网络,文字、图片等素材版权属于原作者,平台转载素材出于传递更多信息,文章内容仅供参考与学习,切勿作为商业目的使用。如果侵害了您的合法权益,请您及时与我们联系,我们会在第一时间进行处理!我们尊重版权,也致力于保护版权,站搜网感谢您的分享!