简介 这篇文章主要介绍了MySQL 从Centos中导入sql文件的方法以及相关的经验技巧,文章约616字,浏览量363,点赞数8,值得推荐!
1、进入数据库
mysql -uroot -p
2、创建数据库
CREATE DATABASE xxxxx CHARACTER SET utf8 COLLATE utf8_general_ci;
2、切换数据库
use xxxxx;
3、导入命令
/root 后面是sql路径
source /root/xxxxx.sql
导入后输入quit
退出即可:
mysql> quit
4、如果是sql文件较大,在my.inf里面配置
百度上搜的,暂时未确定原理和用处
#导入大的sql文件,配置下面两个 interactive_timeout = 120 wait_timeout = 120 max_allowed_packet = 200M #限制server接受的数据包大小
特别声明:以上内容(如有图片或视频亦包括在内)为自媒体平台用户上传并发布,不构成投资建议请自行甄别,如有侵权请联系删除:liaycn@163.com
Notice: The content above (including the pictures and videos if any) is uploaded and posted by a user of the site, which is a social media platform and only provides information storage services.