首頁 > 軟體

MySQL資料庫改名的詳細方法教學

2023-03-15 06:03:13

前戲

有時候生產環境是以專案來命名,有時候會出現更名情況,其實如何安全的更改資料庫名,是個非常棘手的問題,特別是針對 MySQL 來資料庫來說

被取消的命令

MySQL 之前提供了一個 rename database db_old to db_new 的命令來直接對資料庫改名,可能由於實現的功能不完備(比如,這條命令可能是一個超大的事務,或者是由於之前的表很多還是 MyISAM 等),後來 的版本直接取消了這條命令。

更改資料庫名大致上有以下幾種方案:

mysqldump 匯入匯出

要說最簡單的方法,就是直接用 mysqldump 工具,在舊庫匯出再往新庫匯入(最原始、最慢、最容易想到)的方法:

舊庫 yttdb_old 匯出(包含的物件:表、檢視、觸發器、事件、儲存過程、儲存函數)time mysqldump --login-path=root_ytt --set-gtidpurged=off --single-transaction --routines --events yttdb_old > /tmp/yttdb_old.sqlreal 2m24.388suser 0m5.422ssys 0m1.120s新庫 yttdb_new 匯入time mysql --login-path=root_ytt -D yttdb_new < /tmp/yttdb_old.sqlreal 12m27.324suser 0m3.778ssys 0m0.947s

改整庫的表名

利用 MySQL 更改表名的方法來批次把舊庫的所有表依次遍歷,改名為新庫的表。

這種方法比第一種要快很多倍,但是沒有第一步操作起來那麼順滑,不能一步到位。比如,要把資料庫 yttdb_old 改名為 yttdb_new,如果資料庫 yttdb_old 裡只有磁碟表,那很簡單,直接改名即可

alter table yttdb_old.t1 to yttdb_new.t1;

或者寫個指令碼來批次改,非常簡單。但是一般舊庫裡不只有磁碟表,還包含其他各種物件。這時候可以先考慮把舊庫的各種物件匯出來,完了在逐一改完表名後導進去。

匯出舊庫 yttdb_old 下除了磁碟表的其他所有物件(儲存函數、儲存過程、觸發器、事件)

time mysqldump --login-path=root_ytt -t -d -n --setgtid-purged=off --triggers --routines --events yttdb_old > /tmp/yttdb_old_other_object.sqlreal 1m41.901suser 0m1.166ssys 0m0.606s

檢視在 MySQL 裡被看作是表,因此得先查詢出檢視名字,再單獨匯出:

view_list=`mysql --login-path=root_ytt -e "SELECT table_name FROM information_schema.views WHERE table_schema='yttdb_old';" -s | tr 'n' ' '`time mysqldump --login-path=root_ytt --set-gtid-purged=off -- triggers=false yttdb_old $view_list > /tmp/yttdb_old_view_lists.sqlreal 0m0.123suser 0m0.007ssys 0m0.007s

那這些額外的物件成功匯出來後,就可以在舊庫裡刪除他們了。當然了,做這些操作之前,建議把舊庫的

所有物件,包括表,都備份出來,備份方式很多,這裡就不細講了。 現在我們來依次刪除這些物件:(其實除了觸發器和檢視外,其他的物件也可以不用刪除,不過為了讓改 名完後舊庫清空,就必須得先刪掉它們)。

為了清晰期間,我這裡每種物件單獨刪除,也可以直接一次性全部刪除。

批次刪除儲存函數

func_lists=`mysql --login-path=root_ytt -e "SELECT concat('drop function if exists ',routine_name,';') FROM information_schema.routines WHERE routine_schema = 'yttdb_old' AND routine_type = 1 " -ss time mysql --login-path=root_ytt -e "use yttdb_old;$func_lists" real 0m0.048suser 0m0.005ssys 0m0.005s

批次刪除儲存過程:

trigger_lists=`mysql --login-path=root_ytt -e "SELECT concat('drop trigger if exists yttdb_old.',trigger_name,';') FROM information_schema.TRIGGERS WHERE trigger_schema='yttdb_old'" -ss`time mysql --login-path=root_ytt -e "use yttdb_old;$trigger_lists"real 0m0.050suser 0m0.008ssys 0m0.003s

批次刪除觸發器:

trigger_lists=`mysql --login-path=root_ytt -e "SELECT concat('drop trigger if exists yttdb_old.',trigger_name,';') FROM information_schema.TRIGGERS WHERE trigger_schema='yttdb_old'" -ss`time mysql --login-path=root_ytt -e "use yttdb_old;$trigger_lists"real 0m0.050suser 0m0.008ssys 0m0.003s

批次刪除檢視:

view_lists=`mysql --login-path=root_ytt -e "SELECT concat('drop view if exists ',table_name,';') FROM information_schema.VIEWS WHERE table_schema='yttdb_old'" -ss`time mysql --login-path=root_ytt -e "use yttdb_old;$view_lists"real 0m0.070suser 0m0.006ssys 0m0.005s

批次刪除事件:

 event_lists=`mysql --login-path=root_ytt -e "SELECT concat('drop event if exists ',event_name,';') FROM information_schema.EVENTS WHERE event_schema='yttdb_old'" -ss` time mysql --login-path=root_ytt -e "use yttdb_old;$event_lists"real 0m0.054suser 0m0.011ssys 0m0.000s

完了後利用 rename table old_table to new_table 語句來批次更改表名到新庫:(debian-ytt1:3500)|(yttdb_new)>set group_concat_max_len = 18446744073709551615;Query OK, 0 rows affected (0.00 sec)(debian-ytt1:3500)|(yttdb_new)>SELECT CONCAT('rename table ', GROUP_CONCAT(CONCAT(' yttdb_old.',table_name,' to yttdb_new.',table_name)) ) FROM information_schema.TABLES WHERE table_schema = 'yttdb_old' AND table_type = 1 INTO @rename_lists;Query OK, 1 row affected (0.01 sec)(debian-ytt1:3500)|(yttdb_new)>prepare s1 from @rename_lists;Query OK, 0 rows affected (0.00 sec)Statement prepared(debian-ytt1:3500)|(yttdb_new)>execute s1;Query OK, 0 rows affected (55.41 sec)(debian-ytt1:3500)|(yttdb_new)>drop prepare s1;Query OK, 0 rows affected (00.01 sec)

批次更改表名總共才花費 55.41 秒。接下來再把之前匯出的其他物件匯入新庫 yttdb_new:

time mysql --login-path=root_ytt -D yttdb_new < /tmp/yttdb_old_other_object.sqlreal 0m0.222suser 0m0.081ssys 0m0.000stime mysql --login-path=root_ytt -D yttdb_new < /tmp/yttdb_old_view_lists.sqlreal 0m0.158suser 0m0.013ssys 0m0.000s

接下來進行功能驗證,驗證表數量、觸發器、儲存過程、儲存函數、事件等數目是不是對的上。

古老的方案

其實在 MySQL 早期還有一種方法。

假設 MySQL 部署好了後,所有的 binlog 都有備份,並且二進位制紀錄檔格式還是 statement 的話,那就可 以簡單搭建一臺從機,讓它慢慢追主機到新的庫名,等確切要更改舊庫的時候,再直接晉升從機為主機即 可。 這裡只需要從機設定一個引數來把舊庫指向為新庫: replicate-rewrite-db=yttdb_old->yttdb_new 不過這種侷限性很大,不具備標準化,不推薦。

總結

其實針對 MySQL 本身改庫名,大致就這麼幾種方法:

如果資料量小,推薦第一種;資料量大,則推薦第二種;資料量巨大,那就非 MySQL 本身能解決的了。

可通過部署第三方 ETL 工具,通過解析 MySQL 二進位制紀錄檔或其他的方式來把舊庫資料直接讀取到新庫達到改名的目的等等

到此這篇關於MySQL資料庫改名的文章就介紹到這了,更多相關MySQL資料庫改名內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com