英文:
How can I ask mysql to create the database?
问题
我正在运行以下命令:
mysql --user=root --password=root --port=3306 --host=localhost my_db < my_db_backup.sql
但是我收到错误 ERROR 1049 (42000): Unknown database
。如何让 MySQL 在数据库不存在时创建它?我不希望数据库名称出现在 .sql 文件中,我需要能够将备份内容恢复到不同的数据库中。
英文:
I'm running the command :
mysql --user=root --password=root --port=3306 --host=localhost my_db < my_db_backup.sql
But I get the error ERROR 1049 (42000): Unknown database
. How can I ask mysql to create the database if it doesn't exist ? I don't want the database name to be in the .sql file, I need to be able to restore the backup's contents in different databases.
答案1
得分: 0
你必须在命令中使用 --one-database
标志以及 --database
标志,这样你就不需要在 .sql
文件中包含数据库名称,这允许你根据需要将备份内容还原到不同的数据库中!
看看这个:
mysql --user=root --password=root --port=3306 --host=localhost --execute="CREATE DATABASE IF NOT EXISTS my_db;" && mysql --user=root --password=root --port=3306 --host=localhost my_db < my_db_backup.sql
英文:
you must use the --one-database
flag along with the --database
flag in your command, so you don't need to include the database name in the .sql
file and this allows you to restore the backup's contents in different databases as needed!
check this out :
mysql --user=root --password=root --port=3306 --host=localhost --execute="CREATE DATABASE IF NOT EXISTS my_db;" && mysql --user=root --password=root --port=3306 --host=localhost my_db < my_db_backup.sql
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论