I wanted to ask whether it is possible to compare the complete database structure of two huge databases. We have two databases, the one is a development database, the other a p
You can use the command line:
mysqldump --skip-comments --skip-extended-insert -d --no-data -u root -p dbName1>file1.sql mysqldump --skip-comments --skip-extended-insert -d --no-data -u root -p dbName2>file2.sql diff file1.sql file2.sql