Importing all MySQL databases -
i mysqldump --all-database night but this dump as a backup In importing a clean installation, I clearly go to some issues.
- I can not explicitly overwrite new information_skima (and do not want to).
- All my users and permission settings are lost as long as I do not overwrite the
mysqldatabase.
What is the standard practice in this situation? Purge info_schema from .sql file before uploading? And do I overwrite the mysql database or not?
Problems with information schema you do not have
dump mysqldump INFORMATION_SCHEMA database If you explicitly name that database on the command line, mysqldump ignores it quietly
Comments
Post a Comment