diff_mysql_table

#!/usr/bin/env python

#-*- encoding: utf8 -*-

import mysql.connector

# 定义要导出文件目录

work_dir="/data/python/"

class DiffTable:

# fromdbconfig 参数是一个列表,是源端数据库, todbconfig 参数也是一个列表,是目标端数据库(也就是要修改的数据库),第一列是IP,第二列是DB,第三列是账号,第四列是密码,第五列是端口号。

def __init__(self, fromdbconfig,todbconfig):

self.fromdbconfig = fromdbconfig

self.todbconfig = todbconfig

# 获取源端数据库表名,输出结果为列表

def get_source_table_name(self):

select_tables_sql = "select table_name from information_schema.tables where table_schema='%s' order by table_name;" %(self.fromdbconfig[1])

cnn = mysql.connector.connect(host=self.fromdbconfig[0], db=self.fromdbconfig[1], user=self.fromdbconfig[2], password=self.fromdbconfig[3],port=self.fromdbconfig[4])

cursor = cnn.cursor()

cursor.execute(select_tables_sql)

source_table_result = cursor.fetchall()

return source_table_result

# 获取目标端源端数据库表名,输出结果为列表

def get_target_table_name(self):

select_tables_sql = "select table_name from information_schema.tables where table_schema='%s' order by table_name;" %(self.todbconfig[1])

cnn = mysql.connector.connect(host=self.todbconfig[0], db=self.todbconfig[1], user=self.todbconfig[2], password=self.todbconfig[3],port=self.todbconfig[4])

cursor = cnn.cursor()

cursor.execute(select_tables_sql)

target_table_result = cursor.fetchall()

return target_table_result

# 获取指定数据库source_list 里面存在,但是target_list不存在的对象,获取这些表,用于生成create table 语句。

def get_create_table_list(self):

create_table_ret_list = []

for i in range(len(self.get_source_table_name())):

if self.get_source_table_name()[i] not in self.get_target_table_name():

create_table_ret_list.append(self.get_source_table_name()[i])

return create_table_ret_list

# 获取指定数据库source_list 里面存在,但是 get_create_table_list 不存在的对象,获取这些表,用于生成alter table  语句。

def get_alter_table_list(self):

alter_table_ret_list = []

for i in range(len(self.get_source_table_name())):

if self.get_source_table_name()[i] in self.get_target_table_name():

alter_table_ret_list.append(self.get_source_table_name()[i])

return alter_table_ret_list

# 获取数据库表的create table 信息,输出结果为字典,表名是key,对应表create table语句为 value ,用于创建目标端没有的表。

def generate_create_statement(self):

from_table_name_list = []

from_table_name_dict = {}

cnn = mysql.connector.connect(host=self.fromdbconfig[0], db=self.fromdbconfig[1], user=self.fromdbconfig[2], password=self.fromdbconfig[3],port=self.fromdbconfig[4])

cursor = cnn.cursor()

for item in range(len(self.get_create_table_list())):

show_create_table_sql = "show create table %s;" % (self.get_create_table_list()[item][0])

cursor.execute(show_create_table_sql)

result = cursor.fetchall()

from_table_name_list.append(result)

for i in from_table_name_list:

from_table_name_dict[i[0][0]] = i[0][1]+i[0][1].join(';')

return from_table_name_dict

# 获取源端数据库表信息,输出结果为字典,表名为key,表信息为value,用于后续对比源端和目标端表结构是否异同。

def get_source_column_info(self):

source_table_name_list = []

source_ret_dict = {}

cnn = mysql.connector.connect(host=self.fromdbconfig[0], db=self.fromdbconfig[1], user=self.fromdbconfig[2], password=self.fromdbconfig[3],port=self.fromdbconfig[4])

cursor = cnn.cursor()

for item in range(len(self.get_alter_table_list())):

select_columns_sql = "select TABLE_NAME,COLUMN_NAME,COLUMN_TYPE,COLUMN_DEFAULT,COLUMN_COMMENT from information_schema.columns where table_schema='%s' and table_name='%s' order by table_name;" %(self.fromdbconfig[1],self.get_alter_table_list()[item][0])

cursor.execute(select_columns_sql)

result = cursor.fetchall()

source_table_name_list.append(result)

for i in range(len(source_table_name_list)):

source_ret_dict[source_table_name_list[i][0][0]] = source_table_name_list[i]

return source_ret_dict

# 获取目标数据库表信息,输出结果为字典,表名为key,表信息为value,用于后续对比源端和目标端表结构是否异同。

def get_target_column_info(self):

target_table_name_list = []

target_ret_dict = {}

target_null_list = []

cnn = mysql.connector.connect(host=self.todbconfig[0], db=self.todbconfig[1], user=self.todbconfig[2], password=self.todbconfig[3],port=self.todbconfig[4])

cursor = cnn.cursor()

for item in range(len(self.get_alter_table_list())):

select_columns_sql = "select TABLE_NAME,COLUMN_NAME,COLUMN_TYPE,COLUMN_DEFAULT,COLUMN_COMMENT from information_schema.columns where table_schema='%s' and table_name='%s' order by table_name;" %(self.fromdbconfig[1],self.get_alter_table_list()[item][0])

cursor.execute(select_columns_sql)

result = cursor.fetchall()

target_table_name_list.append(result)

while target_null_list in target_table_name_list:

target_table_name_list.remove(target_null_list)

for i in range(len(target_table_name_list)):

target_ret_dict[target_table_name_list[i][0][0]] = target_table_name_list[i]

return target_ret_dict

# 从 get_source_column_info 函数和 get_target_column_info 函数获取结果集,比较两边表,得出差异的部分,后续再对此部分进行生成alter table语句。

def generate_alter_statement(self):

source_column_list = []

source_alter_table_midify = []

source_alter_table_add = []

alter_statement_dict = {}

alter_statement_all = {}

alter_statement_modify = []

alter_statement_add = []

for key,value in self.get_source_column_info().viewitems():

for i in self.get_source_column_info()[key]:

for j in self.get_target_column_info()[key]:

if j[1] not in source_column_list:

source_column_list.append(j[1])

if i[0] == j[0]:

if i[1] == j[1]:

if i[2] == j[2] and i[3] == j[3] and i[4] == j[4]:

pass

else:

# 这部分数据用于生成 alter table modify 语句

if i not in source_alter_table_midify:

source_alter_table_midify.append(i)

else:

# 这部分数据用于生成 alter table add 语句

if i[1] not in source_column_list:

if i not in source_alter_table_add:

source_alter_table_add.append(i)

for i in range(len(source_alter_table_midify)):

alter_statement_modify.append("alter table  %s modify %s %s DEFAULT '%s' COMMENT '%s';" %(source_alter_table_midify[i][0],source_alter_table_midify[i][1],source_alter_table_midify[i][2],source_alter_table_midify[i][3],source_alter_table_midify[i][4]))

for i in range(len(source_alter_table_add)):

alter_statement_add.append("alter table  %s add %s %s DEFAULT '%s' COMMENT '%s';" %(source_alter_table_add[i][0],source_alter_table_add[i][1],source_alter_table_add[i][2],source_alter_table_add[i][3],source_alter_table_add[i][4]))

alter_statement_all['alter_modify'] = alter_statement_modify

alter_statement_all['alter_add'] = alter_statement_add

return alter_statement_all

# 此函数用来打印输出SQL文件

def out_result(create_table_dict,alter_table_dict):

def print_result(table_dict,sql_name):

sql_file = work_dir+'sql_'+sql_name+'_diff_mysql'+'.sql'

with open(sql_file,"aw") as f:

f.write(table_dict+"\n")

for key,value in create_table_dict.viewitems():

print_result(create_table_dict[key],"create_table")

for key,value in alter_table_dict.viewitems():

for i in range(len(alter_table_dict[key])):

print_result(alter_table_dict[key][i],"alter_table")

fromdbconfig_105 = ['192.168.56.105', 'liangdb', 'root', '123456', '3306']

todbconfig_106 = ['192.168.56.106', 'liangdb', 'root', '123456', '3306']

alter_table_result = DiffTable(fromdbconfig_105,todbconfig_106).generate_create_statement()

create_table_result = DiffTable(fromdbconfig_105,todbconfig_106).generate_alter_statement()

print_sql = (alter_table_result,create_table_result)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容