• You can write a script that makes select statements from the information_schema views and do a windiff between the results.

    Something like:

    select * from information_schema.columns order by table_schema,table_name, column_name

    select * from information_schema.views order by table_schema, table_name

    select routine_schema, routine_name, routine_definition from information_schema.routines order by routine_schema,routine_name