最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
mysql备份提示 mysqldump: Got error: 1016
时间:2022-11-14 23:37:08 编辑:袖梨 来源:一聚教程网
最近每日备份MySQL数据库的时候,偶尔会出现:
mysqldump: Got error: 1016: Can’t open file: ‘./hitidea/wp_8_wpo_campaign_feed.frm’ (errno: 24) when using LOCK TABLES
这样的错误。
hitidea是一个有很多数据表的数据库(Wordpress MU),搜索了一下,发现只要在mysqldump的时候加上–lock-tables=false就可以解决问题。
mysqldump -uroot -p123456 table –lock-tables=false > d:table.sql
相关文章
- WPF框架Prism中5iewInjection用法介绍 09-16
- WPF框架Prism中模块Module用法 09-16
- WPF框架之Prism介绍 09-16
- ASP.NET Core命令行界面CLI用法 09-16
- ASP.NETCore基础之异常中间件 09-16
- ASP.NET Core中的wwwroot文件夹 09-16