如何创建主脚本文件来运行mysql脚本

时间:2013-10-07 08:28:36

标签: mysql mysqldump mysql-workbench

我想在mysql中为我的应用程序创建数据库结构,我有100个脚本,它们将在不同的模式中创建表,sp,函数。

请建议我如何才能一个接一个地运行脚本,如果以前的脚本失败,我怎么能停止。我正在使用MySQL 5.6版本。

我正在使用文本文件运行它们。

mysql> source /mypath/CreateDB.sql

包含

tee /logout/session.txt
source /mypath/00-CreateSchema.sql
source /mypath/01-CreateTable1.sql
source /mypath/01-CreateTable2.sql
source /mypath/01-CreateTable3.sql

但它们同时运行,我在下表中有外键,因为它给出了错误。

2 个答案:

答案 0 :(得分:0)

我写了一个Python函数来执行SQL文件:

#!/usr/bin/python
# -*- coding: utf-8 -*-

# Download it at http://sourceforge.net/projects/mysql-python/?source=dlp
# Tutorials: http://mysql-python.sourceforge.net/MySQLdb.html
#            http://zetcode.com/db/mysqlpython/
import MySQLdb as mdb 

import datetime, time

def run_sql_file(filename, connection):
    '''
    The function takes a filename and a connection as input
    and will run the SQL query on the given connection  
    '''
    start = time.time()

    file = open(filename, 'r')
    sql = s = " ".join(file.readlines())
    print "Start executing: " + filename + " at " + str(datetime.datetime.now().strftime("%Y-%m-%d %H:%M")) + "\n" + sql 
    cursor = connection.cursor()
    cursor.execute(sql)    
    connection.commit()

    end = time.time()
    print "Time elapsed to run the query:"
    print str((end - start)*1000) + ' ms'



def main():    
    connection = mdb.connect('127.0.0.1', 'root', 'password', 'database_name')
    run_sql_file("my_query_file.sql", connection)    
    connection.close()

if __name__ == "__main__":
    main()

我没有尝试使用存储过程或大型SQL语句。此外,如果您有包含多个SQL查询的SQL文件,则可能必须拆分(“;”)以提取每个查询并为每个查询调用cursor.execute(sql)。随意编辑此答案以纳入这些改进。

答案 1 :(得分:0)

脚本未同时运行。 mysql客户端不以多线程方式执行。

但是,您可能会按顺序获取脚本,导致外键引用您尚未定义的表,这是一个问题。

此问题有两种可能的解决方法:

  • 按顺序创建表以避免此问题。

  • 创建没有外键的所有表,然后运行包含ALTER TABLE ADD FOREIGN KEY ...语句的另一个脚本。