In the last episode (Sep 28), Steve Buehler said:
> Is there a program out there that I can use to compare two 
> databases?  Just the structure, not the content.

How about something simple like:

 mysqldump -d db1 > db1.txt
 mysqldump -d db2 > db2.txt
 diff -u db1.txt db2.txt

-- 
        Dan Nelson
        [EMAIL PROTECTED]

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to