Changes between Version 5 and Version 6 of jazz/MySQL


Ignore:
Timestamp:
Feb 23, 2018, 4:57:54 PM (7 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/MySQL

    v5 v6  
    1 = MySQL =
     1 = MySQL =
    22
    33* 查詢同時連線數上限
     
    8282SELECT sum(char_length($your_column))/1024/1024 FROM $your_table
    8383}}}
     84* [https://dev.mysql.com/doc/refman/5.7/en/rename-table.html RENAME TABLE Syntax]
     85* MySQL Table 換資料庫 - 從 `DB_A` 要搬到 `DB_B`
     86{{{
     87mysql> RENAME TABLE DB_A.old_table TO DB_B.new_table;
     88}}}
     89* MySQL Table 重新命名
     90{{{
     91mysql> RENAME TABLE old_table TO new_table;
     92}}}
     93* MySQL Table 互換名字
     94{{{
     95mysql> 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
     10433232756    /var/lib/mysql/ibdata1     # 32G
     10549176852    /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/