〇 mysqldump: Error: Query execution was interrupted, maximum statement execution time exceeded when trying to dump tablespaces 〇 mysqldump: Error 3024: Query execution was interrupted, maximum statement execution time exceeded when dumping table `$tb_name` at row: xxxx
版本: MySQL 5.7.8+ 原因: max_execution_time過小 處理思路: ① 通過hints,增大N值(文檔說,在hints用法中,將N改為0為無限制,但我測(cè)下來不生效,可設(shè)置成一個(gè)較大值如999999解決) SELECT /*+ MAX_EXECUTION_TIME(N) */ * FROM t1 LIMIT 100000; ② 修改max_execution_time值,將該值設(shè)置為較大一個(gè)值,或設(shè)置為0(不限制) 附錄: 該參數(shù)5.7.8被添加,單位為ms,動(dòng)態(tài)參數(shù),默認(rèn)為0,設(shè)置為0時(shí)意味著SELECT超時(shí)不被設(shè)置(不限制超時(shí)時(shí)間)。不作用于存儲(chǔ)過程中的SELECT語句,并且只作用于只讀的SELECT,如INSERT ... SELECT ... 是不被作用的。 for more information: http://blog.itpub.net/29773961/viewspace-2150443/
〇 mysqldump: Couldnt execute SHOW FIELDS FROM `$view_name`: View $db_name.$view_name references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them (1356)
〇 mysqldump: Couldnt execute show create table `$view_name`: Illegal mix of collations for operation UNION (1271) 原因: 創(chuàng)建view時(shí),使用UNION時(shí)存在非法的排序規(guī)則組合。 處理思路: 檢查該視圖定義,檢查字符集,考慮重建或刪除視圖。
〇 mysqldump: Couldnt execute SHOW FIELDS FROM `$view_name`: The user specified as a definer ($user@$host) does not exist (1449) 〇 mysqldump: Couldnt execute show table status like $view_name: SELECT command denied to user @% for column $col_name in table $tb_name (1143)
① session1> START TRANSACTION WITH CONSISTENT SNAPSHOT;
② session2>CREATETABLE b (id int) ENGINE=InnoDB;
③ session1>SELECT*FROM b;
ERROR 1412 (HY000):Table definition has changed, please retry transaction
〇 mysqldump: Couldnt execute show create table `$tb_name`: Unable to open underlying table which is differently defined or of non-MyISAM type or doesnt exist (1168)
〇 mysqldump: Couldnt execute show create table `$tb_name`: Table ./$db_name/$tb_name is marked as crashed and last (automatic?) repair failed (144) 〇 mysqldump: Couldnt execute show create table `$tb_name`: Table ./$db_name/$tb_name is marked as crashed and should be repaired (145) 〇 mysqldump: Error 1194: Table throne_tower is marked as crashed and should be repaired when dumping table `$tb_name` at row: xxxxx
〇 mysqldump: Error: Got error 28 from storage engine when trying to dump tablespaces mysqldump: Couldnt execute show fields from `$tb_name`: Got error 28 from storage engine (1030)
〇 mysqldump: Lost connection to MySQL server during query (2013) ERROR 2002 (HY000): Can't connect to local MySQL server through socket '@@socket' (111)
〇 mysqldump: Couldn't execute 'SHOW SLAVE STATUS': Access denied; you need (at least one of) the SUPER, REPLICATION CLIENT privilege(s) for this operation (1227)