问题描述:
MySQL导出performance_schema时,出现错误error 1142 SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table 'accounts' when using LOCK TABLES
【解决方法】
mysql --skip-lock-tables -u root -p performance_schema < performance_schema.sql
如果是导入performance_schema时,出现错误error 1142,是表示performance_schema库下面的accounts表在使用,导入时会提示占用。因此不需要导入,只导入业务库就行了。