I have a database on Machine A. What I want is to dump my database in such a way that when I import it on another machine (Machine B) only the structure of the tables and Database are created.
I want no data.
Can mysqldump be used here?
|
|
|
Yes. If you want to import the structure of the Database on some other machine there are some steps as follows 1.on Machine A(generate the dump without the data)
using if you want only data dump do as(It will not contain the create statements)
2.copy the database_structure.sql on Machine B Then you want to restore its structure on Machine B do 3. Then you have database structure available on the Machine B. try it.. |
|||
|
|