分类: Mysql/postgreSQL
2009-04-21 11:45:44
使用mysqldump -uroot -p'123' --all-database >all.sql 导出所有数据库,在使用
mysql -uroot -p'123'
mysql> show variables like 'net_buffer_length';
记录下参数,在导出的时候使用
mysqldump -uroot -p'123' --all-database --max_allowed_packet=1047552 --net_buffer_length=16384 >all.sql
然后再倒入即可。