Posted by Michael Fesser on 07/10/07 16:31
..oO(Robbo)
>My database contains 45 tables the structure of which is evolving as I
>develop. I need a utility that will "read" the structure of this
>database and it's tables and then create an identical database with
>all tables.
The fastest way is to do it on the command line.
Export:
mysqldump -uUsername -p -d Database > tables.sql
Import:
mysql -uUsername -p Database < tables.sql
Replace Username and Database accordingly.
Micha
Navigation:
[Reply to this message]
|