zoukankan      html  css  js  c++  java
  • python生成数据后,快速导入数据库

    1、使用python生成数据库文件内容

    # coding=utf-8
    import random
    import time


    def create_user():
        start = time.time()
        count = 1000  # 一千万条数据
        beginId = 200010000
        with open(r"./userInfo.txt", "w") as fp:
            for i in range(1,count+1):
                id = str(i)
                userId = beginId + i
                name = ''.join(random.sample('zyxwvutsrqponmlkjihgfedcba', 4)).replace('', '')
                sex = str(random.choice(['男', '女']))
                weight = str(random.randrange(10, 99))
                address = str(random.choice(['北京', '上海', '深圳', '广州', '杭州']))
                insert_t_user_weight = (
                                "INSERT INTO t_user_weight VALUES ('%s', '%s', '%s','%s', '%s', '%s', '%s');"
                % (id, userId, name, sex, weight, address, time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))
                           )
                insert_t_user_weight = insert_t_user_weight + ' '
                # print(insert_t_user_weight)
                fp.write(insert_t_user_weight)

            print('共创建%d条sql耗时:'% count, time.time() - start)


    if __name__ == "__main__":
            create_user()

    2、使用命令导入数据库

    load data infile "/tmp/userInfo.txt" into table test_insert fields terminated by ',';

    3、MYSQL导入数据出现The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

     

    这个原因是因为在安装MySQL的时候限制了导入与导出的目录权限,只能在规定的目录下才能导入,我们需要通过下面命令查看 secure-file-priv 当前的值是什么。

    show variables like '%secure%';

     

    只需要把相对应的文件放在上面的目录下,即可成功读取,而不会报上面的错误了。

     

  • 相关阅读:
    Visio使用遇到的问题
    UML类图符号 各种关系说明以及举例
    测试人员与开发人员之间的关系如何?
    linux命令学习-复制(cp,scp)
    linux服务器报Too many open files的解决方法
    QTP学习一添加默认的注释及调用外部vbs文件
    关于JAVA应用中文字体显示小方框的问题解决
    web测试方法总结
    linux命令学习-su
    Oracle定义varchar2()类型存储汉字的长度问题
  • 原文地址:https://www.cnblogs.com/yanpan/p/9841970.html
Copyright © 2011-2022 走看看