Windows 导入几个G的Mysql 数据库的方法

步骤1 参数设置

在Mysql命令中执行下面语句。

mysql> set global max_allowed_packet=1024*1024*1600;

步骤2 在Mysql的配置文件中修改/添加参数,然后重启Mysql数据库

在[mysqld]下添加/修改两行:

tmp_table_size = 2560M 
max_heap_table_size = 2560M

步骤3 设置编码

在导入数据的时候设置default-character-set=utf8 ,如下命令:

C:\Users\lollicup>mysql -uroot -p --default-character-set=utf8 local_lollicupstore2 < D:\lollicup\database\lollic6_magento.sql

常见问题

mysql出现”the table is full”的问题

ERROR 1114 (HY000) at line 25622: The table 'sales_flat_order_payment' is full

或者 errno: 28 – No space left on device

ERROR 1026 (HY000) at line 6001: Error writing file 'C:\WINDOWS\TEMP\ML4BFC.tmp' (errno: 28 - No space left on device)

mysql出现”the table is full”的问题,一般有两个原因:

一 .You are using the MEMORY (HEAP) storage engine; in this case you need to increase the value of the max_heap_table_size system variable. See Section 5.1.3, “Server System Variables”.

ERROR 1114 (HY000) at line 1720: The table 'XXXX' is full

于是就修改Mysql的配置文件my.ini,在[mysqld]下添加/修改两行:

tmp_table_size = 256M
max_heap_table_size = 256M

系统默认是16M,修改完后重启mysql

二.硬盘空间满了,清理硬盘即可.

不要被mysql的安装目录所欺骗, 最好亲自去看看数据存放目录是哪

在my.ini  搜索 datadir

看其指向的目录 就是数据存放目录

Leave a comment

您的电子邮箱地址不会被公开。 必填项已用 * 标注