Can I tell the difference between the two mysql dump files?

I need to know all the changes that occur in the mysql database during the process. All changes are inserted only. To do this, I reset the database before and after using the following command

> mysqldump -u root -p sgdatabase_310ec9ef0bcea1f9c677369ea973ab75 > AfteOpDb.sql 

Is there a way to see how the whole insertion occurs in the database by table by table database?

And I do not mean a text comparison tool. Something specific to db that shows the difference graphically would be very nice.

OS: Windows

+5
source share
1 answer

As pointed out by OMG Ponies in this answer , you can use the DIFF tool. A pair that can be used and is free (again, offered in the original message):

+3
source

All Articles