MySQL 開啟 innodb_file_per_table 及轉換現有資料表

回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

MySQL 開啟 innodb_file_per_table 及轉換現有資料表

文章 yehlu »

https://www.phpini.com/mysql/mysql-enab ... vert-table

MySQL 會將 InnoDB 的資料表內的資料及索引全部儲存到共享空間, 即是所有 InnoDB 資料表的資料全都放到 ibdata1 檔案內。而 innodb_file_per_table 就可以設定每個資料表, 使用獨立表空間儲存資料, 即是每個資料表有屬於自己的 .ibd 檔案。

這樣做的好處是對日後的管理較容易, 在 MySQL 5.6.6 開始, innodb_file_per_table 預設是開啟, 而在 5.6.6 前的版本預設是關閉的, 要查詢目前 MySQL 的 innodb_file_per_table 是否開啟, 可以查看 MySQL 的 innodb_file_per_table 變數:


mysql> show variables like 'innodb_file_per_table';
+--------------------------+----------+
| Variable_name | Value |
+--------------------------+----------+
| innodb_file_per_table | OFF |
+--------------------------+----------+
1 rows in set (0.00 sec)
1
2
3
4
5
6
7
mysql> show variables like 'innodb_file_per_table';
+--------------------------+----------+
| Variable_name | Value |
+--------------------------+----------+
| innodb_file_per_table | OFF |
+--------------------------+----------+
1 rows in set (0.00 sec)
以下是開啟 innodb_file_per_table, 及將現有儲存在共享空間 (ibdata1) 的資料表, 轉換到 innodb_file_per_table 的步驟。

1. 關閉 MySQL:

# systemctl stop mysql
2. 將 MySQL 資料庫目錄完整備份, 即使出錯也可以即時修復:




# cp -ra /var/lib/mysql mysqldata.backup
3. 編輯 my.cnf:

要開啟 innodb_file_per_table, 先開啟 my.cnf:

# vi my.cnf
在 [mysqld] 段落加入以下一行:

innodb_file_per_table=1
4. 啟動 MySQL:

# systemctl start mysql
5. 轉換資料表

這時執行中的 MySQL 已經開啟了 innodb_file_per_table, 所有新建立的 InnoDB 資料表都會使用獨立空間, 即使用屬於自己的 .ibd 檔, 但原有的 InnoDB 資料表則仍舊使用共享空間 (ibdata1), 要轉換除了用 mysqldump 匯出資料表, 將資料表刪除及重新匯入外, 也可以用 ALTER TABLE 指令完成, 登入 MySQL CLI 或 phpMyAdmin, 例如舊有 InnoDB 資料表名稱是 table_name, 執行以下 SQL 指令:

ALTER TABLE table_name ENGINE=InnoDB;
這樣 table_name 資料表便會轉換到使用獨立空間表。
回覆文章

回到「MySQL」