how to migrate the procedures b/w two databases in mysql
if i have 2 diff dat开发者_开发技巧abase(A&B),now i want to migrate all data (not only the tables, but also include the procedure) from A to B,is there any way to solve this?
There are a few utilities that come packaged with mysql. Have you looked at mysqldump? It allows you to create a backup of a database which you can recreate elsewhere.
As Zach pointed out, mysqldump can handle this. If you would rather a GUI, you could also try Toad. It has a schema compare option that can show you the differences between the two databases and let you choose which tables and routines you wish to migrate.
精彩评论