| 84 | * [https://dev.mysql.com/doc/refman/5.7/en/rename-table.html RENAME TABLE Syntax] |
| 85 | * MySQL Table 換資料庫 - 從 `DB_A` 要搬到 `DB_B` |
| 86 | {{{ |
| 87 | mysql> RENAME TABLE DB_A.old_table TO DB_B.new_table; |
| 88 | }}} |
| 89 | * MySQL Table 重新命名 |
| 90 | {{{ |
| 91 | mysql> RENAME TABLE old_table TO new_table; |
| 92 | }}} |
| 93 | * MySQL Table 互換名字 |
| 94 | {{{ |
| 95 | mysql> RENAME TABLE old_table TO tmp_table, new_table TO old_table, tmp_table TO new_table; |
| 96 | }}} |
| 97 | |
| 98 | == 踩到的雷 == |
| 99 | |
| 100 | * 用 InnoDB 會遇到 ibdata1 一直長大 |
| 101 | * 參考:[ https://dba.stackexchange.com/questions/39125/ibdata1-grows-exponentially-when-innodb-file-per-table-is-configured ibdata1 grows exponentially when innodb_file_per_table is configured] |
| 102 | {{{ |
| 103 | /var/lib/mysql$ sudo du -s $(pwd)/* | sort -n | tail -n 2 |
| 104 | 33232756 /var/lib/mysql/ibdata1 # 32G |
| 105 | 49176852 /var/lib/mysql/dashboard # 49G |
| 106 | }}} |
| 107 | * 用 InnoDB 必須下 OPTIMZE 才能完全釋出已經刪除 record 的硬碟空間,而且執行 OPTIMIZE TABLE 時,需要有足夠的硬碟空間(因為會產生一個新的資料表檔案,然後複製資料進去,再刪掉舊的資料表檔案) |
| 108 | * 參考:https://blog.longwin.com.tw/2012/03/mysql-myisam-innodb-optimize-2012/ |