====== mysqldumpでエラー ====== # mysqldump --skip-lock-tables -u hogehoge --password="hogehoge" -h "192.168.10.10" cloud > cloud.dump mysqldump: Couldn't execute 'show create table `account_netstats_view`': SHOW VIEW command denied to user 'hogehoge@'192.168.10.10 for table 'account_netstats_view' (1142) SHOW VIEW権限を付けてあげると、mysqldumpできました。 mysql> GRANT SELECT, SHOW VIEW ON *.* TO 'hogehoge'@'%';