MySQL Export 首先导出视图 - 并在恢复时立即崩溃
我有一个生产 MySQL 服务器,我需要从中转储数据库。问题是,每当我进行此转储时,它都会首先生成视图信息。当我尝试恢复此备份时,它立即出错,因为支持它的表尚不存在。
有没有快速解决此问题的方法?我正在通过 PHPMyAdmin 转储数据库。
谢谢! 抢
I have a production MySQL server that I need to dump a database out of. The problem is that whenever I make this dump, it generates the View information first. When I try to restore this backup, it errors immediately as the tables that back it don't exist yet.
Is there any quick fix to this issue? I'm dumping the database via PHPMyAdmin.
Thanks!
Rob
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
phpmyadmin 生成不正确的备份(没有表锁或可重复读隔离级别),因此对于严重的备份,您应该真正使用 mysqldump。它也快得多。
phpmyadmin generates incorrect backups (no table locks or REPEATABLE READ isolation level), so for serious backups you should really use mysqldump. It is also much, much faster.