How do I restore one database from a mysqldump containing multiple databases?

前端 未结 2 740
长情又很酷
长情又很酷 2021-02-05 12:34

I have a mysql dump with 5 databases and would like to know if there is a way to import just one of those (using mysqldump or other).

Suggestions appreciated.

2条回答
  •  遥遥无期
    2021-02-05 13:40

    You can use the mysql command line --one-database option.

    mysql> mysql -u root -p --one-database YOURDBNAME < YOURFILE.SQL
    

    Of course be careful when you do this.

    You can also use a mysql dumpsplitter.

提交回复
热议问题