↧
Problem with restoring MySQL databases using sqldump file
Recently, I was upgrading MySQL from v5.5 to v5.6 on a Windows 2003 server. I used the GUI MS installer. There was an error half way through that I could not get around so I elected to un-install MySQL...
View ArticleProblem with restoring MySQL databases using sqldump file
mysqldump doesn't dump user ownership or permissions unless you specify the --routines parameter when dumping. User permissions have to be granted individually back to restored databases which don't...
View ArticleProblem with restoring MySQL databases using sqldump file
Keep Antal's answer in mind for future dumps and/or disaster recovery processes and documentation.
View ArticleProblem with restoring MySQL databases using sqldump file
I'm confused. Here's my backup commandline... mysqldump -uroot -ppassword --all-databases > D:\MySQL-Backup\AllDBDump.sqland restore commandline ... mysql -uroot -ppassword <...
View Article