How do I see the differences between 2 MySQL dumps?

陌路散爱 提交于 2019-11-30 13:10:26

问题


I have 2 MySQL dump files. I want to find the table data difference between 2 tables.


回答1:


Use a DIFF tool - here are some graphical ones (both are free):

  • KDIFF
  • winmerge



回答2:


run mysqldump with "--skip-opt" to get the 2 dumps files i.e:

mysqldump --skip-opt -u $MY_USER -p$MY_PASS mydb1 > /tmp/dump1.sql

mysqldump --skip-opt -u $MY_USER -p$MY_PASS mydb2 > /tmp/dump2.sql

compare using these diff options:

diff -y --suppress-common-lines /tmp/dump1 /tmp/dump2



回答3:


In order to compare 2 mysql diffs they need to be done in a certain manner, so that the order is in a defined way and non relevant data is omitted.

This was at one point not totally possible with mysqldump, I am not sure if this has changed in the meantime.

One good tool for the job is pydumpy https://code.google.com/p/pydumpy/ (mirror: https://github.com/miebach/pydumpy)

If you want to compare to an old dump, like in the question, you could first create a temporary database from the dump and then start there.




回答4:


Here's what I use. It works.


#!/bin/bash
# Do a mysqldump of the a db, once a day or so and diff to the previous day. I want to catch when data has changed
# Use the --extended-insert=false so that each row of data is on a single line, that way the diff catches individual record changes

mv /tmp/dbdump0.sql /tmp/dbdump1.sql 2>/dev/null

mysqldump -h dbhostname.com -P 3306 -u username -p password --complete-insert --extended-insert=false dbname > /tmp/dbdump0.sql

# Ignore everything except data lines
grep "^INSERT" /tmp/dbdump0.sql  > /tmp/dbdump0inserts
grep "^INSERT" /tmp/dbdump1.sql  > /tmp/dbdump1inserts

diff /tmp/dbdump1.sql  /tmp/dbdump0.sql   > /tmp/dbdumpdiffs
r=$?
if [[ 0 != "$r" ]] ; then
    # notifier code remove
fi



回答5:


This tool is not available anymore, as the website is no longer functional.

Maybe you can give a tool called mysqldiff a go, I haven't tried it myself yet but it's been on my list for a while.

  • http://www.mysqldiff.org/



回答6:


This was very useful for me, so adding my two cents:

git diff --word-diff=color dump1.sql dump2.sql | less -R


来源:https://stackoverflow.com/questions/3840908/how-do-i-see-the-differences-between-2-mysql-dumps

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!