安全的辦法是在舊環(huán)境導出表數(shù)、在新環(huán)境建立數(shù)據(jù)庫后導入表,可以使用SQL或者TXT為中間文件。
在云霄等地區(qū),都構建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務理念,為客戶提供成都網(wǎng)站設計、網(wǎng)站制作 網(wǎng)站設計制作定制網(wǎng)站開發(fā),公司網(wǎng)站建設,企業(yè)網(wǎng)站建設,高端網(wǎng)站設計,成都全網(wǎng)營銷,外貿(mào)網(wǎng)站建設,云霄網(wǎng)站建設費用合理。
0. 目標端必須有同名表,沒有則建一個空表;
####################################
1、 源端文件準備
源端:?
flush tables t for export;?
復制?
t.ibd, t.cfg到目標端。?
###############################
flush tables tt7? ?for export;?
cp? tt7*? ?../ops
2、 目標端存在同樣的表則丟棄原來的數(shù)據(jù)文件
目標端:?
alter table tt7? discard tablespace;
3、 目標端加載新的數(shù)據(jù)文件 t.ibd
alter table tt7 import tablespace;?
4、源端釋放鎖
源端:?
unlock tables;?
過程中主要異常處理:
#####################################################
SELECT? * FROM? ?ops2.tt7? ? ;
SELECT? * FROM? ?ops.tt7? ? ;
import tablespace報錯:
mysql alter table tt7 import tablespace;?
ERROR 1812 (HY000): Tablespace is missing for table ops.tt7.
確認再相應的目錄存在兩個文件
確認屬主和權限
#####################################################
過程
[root@qaserver120 ops]# ll
total 80
drwxr-xr-x 2 root? root? ? ? 36 Dec? 2 21:42 000
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:17 tt2.ibd
[root@qaserver120 ops]#?
[root@qaserver120 ops]#?
[root@qaserver120 ops]#?
[root@qaserver120 ops]# cp 000
[root@qaserver120 ops]# ll
drwxr-xr-x 2 root? root? ? ? 36 Dec? 2 21:42 000
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:17 tt2.ibd
-rw-r----- 1 root? root? ? ?627 Dec? 2 21:45 tt7.cfg
-rw-r----- 1 root? root? 114688 Dec? 2 21:45 tt7.ibd
[root@qaserver120 ops]# chown mysql.mysql tt7*
[root@qaserver120 ops]#?
[root@qaserver120 ops]# ll
drwxr-xr-x 2 root? root? ? ? 36 Dec? 2 21:42 000
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:17 tt2.ibd
-rw-r----- 1 mysql mysql? ? 627 Dec? 2 21:45 tt7.cfg
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:46 tt7.ibd
[root@qaserver120 ops]#?
#####################################################
mysql show tables;
+---------------+
| Tables_in_ops |
+---------------+
| tt2? ? ? ? ? ?|
| tt7? ? ? ? ? ?|
+---------------+
2 rows in set (0.00 sec)
mysql select * from tt7;
ERROR 1814 (HY000): Tablespace has been discarded for table 'tt7'
mysql alter table tt7 import tablespace;?
ERROR 1812 (HY000): Tablespace is missing for table ops.tt7.
mysql?
mysql alter table tt7 import tablespace;
Query OK, 0 rows affected (0.08 sec)
mysql?
mysql select * from tt7;
+--------------+------+
| x? ? ? ? ? ? | y? ? |
+--------------+------+
| BBBBBB? ? ? ?| NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
+--------------+------+
7 rows in set (0.00 sec)
mysql
###############################################
################################################
mysql mysql show tables;
+----------------+
| Tables_in_ops2 |
+----------------+
| tt2? ? ? ? ? ? |
| tt3? ? ? ? ? ? |
| tt7? ? ? ? ? ? |
+----------------+
3 rows in set (0.00 sec)
mysql?
mysql use ops
Database changed
mysql show tables;
+---------------+
| Tables_in_ops |
+---------------+
| tt2? ? ? ? ? ?|
+---------------+
1 row in set (0.00 sec)
mysql?
mysql use ops2;
Database changed
mysql select * from tt7;
+--------+------+
| x? ? ? | y? ? |
+--------+------+
| BBBBBB | NULL |
+--------+------+
1 row in set (0.00 sec)
mysql?
mysql?
mysql insert into tt7 select * from tt3;
Query OK, 3 rows affected (0.00 sec)
Records: 3? Duplicates: 0? Warnings: 0
mysql insert into tt7 select * from tt3;
Query OK, 3 rows affected (0.00 sec)
Records: 3? Duplicates: 0? Warnings: 0
mysql select * from tt7;
+--------------+------+
| x? ? ? ? ? ? | y? ? |
+--------------+------+
| BBBBBB? ? ? ?| NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
+--------------+------+
7 rows in set (0.00 sec)
mysql?
mysql commit;
Query OK, 0 rows affected (0.00 sec)
mysql?
mysql exit
Bye
[root@qaserver120 pkg]# cd /data/mysql/ops2
[root@qaserver120 ops2]# ll
total 240
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:17 tt2.ibd
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:17 tt3.ibd
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:36 tt7.ibd
[root@qaserver120 ops2]#?
[root@qaserver120 ops2]#?
[root@qaserver120 ops2]#?
[root@qaserver120 ops2]# mysql -u'root'? -p'fgxkB9;Zq40^MFQUi$PJ'? ? ? ? -A
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.? Commands end with ; or \g.
Your MySQL connection id is 56
Server version: 8.0.18 MySQL Community Server - GPL
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql use ops2
Database changed
mysql?
mysql flush tables tt7? ?for export;?
Query OK, 0 rows affected (0.00 sec)
mysql show tables;
+----------------+
| Tables_in_ops2 |
+----------------+
| tt2? ? ? ? ? ? |
| tt3? ? ? ? ? ? |
| tt7? ? ? ? ? ? |
+----------------+
3 rows in set (0.01 sec)
mysql exit
Bye
[root@qaserver120 ops2]# ll
total 240
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:17 tt2.ibd
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:17 tt3.ibd
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:36 tt7.ibd
[root@qaserver120 ops2]# ll
total 240
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:17 tt2.ibd
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:17 tt3.ibd
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:36 tt7.ibd
[root@qaserver120 ops2]# pwd
/data/mysql/ops2
[root@qaserver120 ops2]# cd? cd /data/mysql?
-bash: cd: cd: No such file or directory
[root@qaserver120 ops2]#? cd /data/mysql/ops2
[root@qaserver120 ops2]# ll
total 240
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:17 tt2.ibd
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:17 tt3.ibd
-rw-r----- 1 mysql mysql 114688 Dec? 2 21:36 tt7.ibd
[root@qaserver120 ops2]# ll -al
total 244
drwxr-x---? 2 mysql mysql? ? ?51 Dec? 2 21:38 .
drwxr-xr-x 12 mysql mysql? ?4096 Dec? 2 21:17 ..
-rw-r-----? 1 mysql mysql 114688 Dec? 2 21:17 tt2.ibd
-rw-r-----? 1 mysql mysql 114688 Dec? 2 21:17 tt3.ibd
-rw-r-----? 1 mysql mysql 114688 Dec? 2 21:36 tt7.ibd
[root@qaserver120 ops2]# pwd
/data/mysql/ops2
[root@qaserver120 ops2]# mysql -u'root'? -p'fgxkB9;Zq40^MFQUi$PJ'? ? ? ? -A
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.? Commands end with ; or \g.
Your MySQL connection id is 57
Server version: 8.0.18 MySQL Community Server - GPL
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql use ops2
Database changed
mysql show tables;
+----------------+
| Tables_in_ops2 |
+----------------+
| tt2? ? ? ? ? ? |
| tt3? ? ? ? ? ? |
| tt7? ? ? ? ? ? |
+----------------+
3 rows in set (0.00 sec)
mysql select * from tt7;
+--------------+------+
| x? ? ? ? ? ? | y? ? |
+--------------+------+
| BBBBBB? ? ? ?| NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
+--------------+------+
7 rows in set (0.00 sec)
mysql flush tables tt7? ?for export;?
Query OK, 0 rows affected (0.00 sec)
mysql use ops
Database changed
mysql ll
- ;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'll' at line 1
mysql show tables;
+---------------+
| Tables_in_ops |
+---------------+
| tt2? ? ? ? ? ?|
+---------------+
1 row in set (0.00 sec)
mysql?
mysql?
mysql alter table tt7 import tablespace;?
ERROR 1100 (HY000): Table 'tt7' was not locked with LOCK TABLES
mysql?
mysql?
mysql use ops2
Database changed
mysql show tables;
+----------------+
| Tables_in_ops2 |
+----------------+
| tt2? ? ? ? ? ? |
| tt3? ? ? ? ? ? |
| tt7? ? ? ? ? ? |
+----------------+
3 rows in set (0.00 sec)
mysql select * from tt7;
+--------------+------+
| x? ? ? ? ? ? | y? ? |
+--------------+------+
| BBBBBB? ? ? ?| NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
+--------------+------+
7 rows in set (0.00 sec)
mysql unlock tables;
Query OK, 0 rows affected (0.00 sec)
mysql show create table? tt7;
+-------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table | Create Table? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?|
+-------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tt7? ?| CREATE TABLE `tt7` (
`x` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_as_cs DEFAULT NULL,
`y` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_as_cs |
+-------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)
mysql use ops
Database changed
mysql show tables;
+---------------+
| Tables_in_ops |
+---------------+
| tt2? ? ? ? ? ?|
+---------------+
1 row in set (0.01 sec)
mysql? CREATE TABLE `tt7` (
-? ?`x` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_as_cs DEFAULT NULL,
-? ?`y` int(11) DEFAULT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_as_cs ;
Query OK, 0 rows affected, 1 warning (0.02 sec)
mysql?
mysql?
mysql show tables;
+---------------+
| Tables_in_ops |
+---------------+
| tt2? ? ? ? ? ?|
| tt7? ? ? ? ? ?|
+---------------+
2 rows in set (0.00 sec)
mysql select * from tt7;
Empty set (0.00 sec)
mysql?
mysql alter table tt7? discard tablesapce;?
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'tablesapce' at line 1
mysql alter table tt7? discard tablespace;
Query OK, 0 rows affected (0.03 sec)
mysql?
mysql?
mysql show tables;
+---------------+
| Tables_in_ops |
+---------------+
| tt2? ? ? ? ? ?|
| tt7? ? ? ? ? ?|
+---------------+
2 rows in set (0.00 sec)
mysql select * from tt7;
ERROR 1814 (HY000): Tablespace has been discarded for table 'tt7'
mysql?
mysql?
mysql?
mysql show tables;
+---------------+
| Tables_in_ops |
+---------------+
| tt2? ? ? ? ? ?|
| tt7? ? ? ? ? ?|
+---------------+
2 rows in set (0.00 sec)
mysql select * from tt7;
ERROR 1814 (HY000): Tablespace has been discarded for table 'tt7'
mysql?
mysql?
mysql alter table tt7 import tablespace;?
ERROR 1812 (HY000): Tablespace is missing for table `ops`.`tt7`.
mysql?
mysql?
mysql?
mysql alter table tt7 import tablespace;
Query OK, 0 rows affected (0.08 sec)
mysql?
mysql?
mysql select * from tt7;
+--------------+------+
| x? ? ? ? ? ? | y? ? |
+--------------+------+
| BBBBBB? ? ? ?| NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
+--------------+------+
7 rows in set (0.00 sec)
mysql SELECT? * FROM? ?ops2.tt7? ? ;
+--------------+------+
| x? ? ? ? ? ? | y? ? |
+--------------+------+
| BBBBBB? ? ? ?| NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
+--------------+------+
7 rows in set (0.00 sec)
mysql SELECT? * FROM? ?ops.tt7? ? ;
+--------------+------+
| x? ? ? ? ? ? | y? ? |
+--------------+------+
| BBBBBB? ? ? ?| NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
+--------------+------+
7 rows in set (0.00 sec)
mysql?
mysql?
mysql?
mysql unlock tables;?
Query OK, 0 rows affected (0.00 sec)
mysql unlock tables;?
Query OK, 0 rows affected (0.00 sec)
mysql use ops
Database changed
mysql show tables;
+---------------+
| Tables_in_ops |
+---------------+
| tt2? ? ? ? ? ?|
| tt7? ? ? ? ? ?|
+---------------+
2 rows in set (0.00 sec)
mysql?
mysql?
mysql?
mysql use ops2;
Database changed
mysql?
mysql?
mysql show tables;
+----------------+
| Tables_in_ops2 |
+----------------+
| tt2? ? ? ? ? ? |
| tt3? ? ? ? ? ? |
| tt7? ? ? ? ? ? |
+----------------+
3 rows in set (0.01 sec)
mysql?
mysql select * from tt7;
+--------------+------+
| x? ? ? ? ? ? | y? ? |
+--------------+------+
| BBBBBB? ? ? ?| NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
+--------------+------+
7 rows in set (0.00 sec)
mysql?
mysql use ops;
Database changed
mysql?
mysql?
mysql select * from tt7;
+--------------+------+
| x? ? ? ? ? ? | y? ? |
+--------------+------+
| BBBBBB? ? ? ?| NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
| AAAAAA? ? ? ?| NULL |
| BBBBBB? ? ? ?| NULL |
| 555555555555 | NULL |
+--------------+------+
7 rows in set (0.00 sec)
[mysqld]
# * Basic Settings
user? ? ? ? ? ? = mysql
pid-file? ? ? ? = /var/run/mysqld/mysqld.pid
socket? ? ? ? ? = /var/run/mysqld/mysqld.sock
port? ? ? ? ? ? = 3306
basedir? ? ? ? = /usr
datadir? ? ? ? = /data/c/mysql 修改
#datadir? ? ? ? =/var/lib/mysql
這個原因有二,其中任意的一個原因都會造成你被系統(tǒng)告知這個warning。如果你不是一個專業(yè)的linux系統(tǒng)安全工程師,或者你只是個PHP程序員,并沒有對系統(tǒng)安全有深入的研究,你就不會太容易找到它的答案。
第一,selinux,記得當年念書時,字符界面安裝redhat(很古老的操作系統(tǒng)么。。。)的時候,有這么一個選項,通常大家都聽取前輩的建議,改變默認值以不安裝它。但如果你恰好要操作的這臺機器開著selinux,它確實能夠使你的mysql無法在新目標位置進行mysql_install_db的操作,并爆出標題所示的警告。一個簡單的解決辦法是使用命令暫時關閉selinux,以便讓你的操作可以繼續(xù)下去 setenforce 0 但最好使用一個永久方法,以便在重啟后繼續(xù)不要這貨。 修改/etc/selinux/config文件中設置SELINUX=disabled ,然后重啟或等待下次重啟。
第二,apparmor,這個坑爹貨和selinux一樣的坑爹,它也對mysql所能使用的目錄權限做了限制 在 /etc/apparmor.d/usr.sbin.mysqld 這個文件中,有這兩行,規(guī)定了mysql使用的數(shù)據(jù)文件路徑權限
/var/lib/mysql/ r, /var/lib/mysql/** rwk,
你一定看到了,/var/lib/mysql/就是之前mysql安裝的數(shù)據(jù)文件默認路徑,apparmor控制這里mysqld可以使用的目錄的權限 我想把數(shù)據(jù)文件移動到/data/mysql下,那么為了使mysqld可以使用/data/mysql這個目錄,照上面那兩條,增加下面這兩條就可以了
/data/mysql/ r, /data/mysql/** rwk,
/var/lib/mysql/ r,
/var/lib/mysql/** rwk,
/datc/c/mysql/ r,
/data/c/mysql/** rwk,
/var/lib/mysql-files/ r,
/var/lib/mysql-files/** rwk,
/data/c/mysql-files/ r,
/data/c/mysql-files/** rwk,
/var/lib/mysql-keyring/ r,
/var/lib/mysql-keyring/** rwk,
/data/c/mysql-keyring/ r,
/data/c/mysql-keyring/** rwk,
apparmor,/etc/inid.d/apparmor restart////////////? ? ?/etc/init.d/apparmor restart
MySQL數(shù)據(jù)庫遷移
MySQL數(shù)據(jù)庫遷移(數(shù)據(jù)文件直接遷移)
在今年10月下旬的時候,公司的服務器需要遷移,其中涉及到了MySQL數(shù)據(jù)庫遷移。查看了一下MySQL數(shù)據(jù)文件的大小,接近60G的大小(實際數(shù)據(jù)并沒用那么多)。由于服務器上業(yè)務需要,要盡量減少服務器遷移時的損失。所以遷移時間選在了晚上零點開始,而且要盡量減少遷移所用的時間。
在遷移之前有三種方案:
數(shù)據(jù)庫直接導出,拷貝文件到新服務器,在新服務器上導入。
使用【MySQL
GUI
Tools】中的
MySQLMigrationTool。
數(shù)據(jù)文件和庫表結構文件直接拷貝到新服務器,掛載到同樣配置的MySQL服務下。
我在我的電腦上用虛擬機測試后,選中了占用時間最少的第三種方案。下面是三種方案的對比:
第一種方案的優(yōu)點:會重建數(shù)據(jù)文件,減少數(shù)據(jù)文件的占用空間。
第一種方案的缺點:時間占用長。(導入導出都需要很長的時間,并且導出后的文件還要經(jīng)過網(wǎng)絡傳輸,也要占用一定的時間。)
第二種方案的優(yōu)點:設置完成后傳輸無人值守
第二種方案的缺點:
設置繁瑣。
傳輸中網(wǎng)絡出現(xiàn)異常,不能及時的被發(fā)現(xiàn),并且會一直停留在數(shù)據(jù)傳輸?shù)臓顟B(tài)不能被停止,如不仔細觀察不會被發(fā)現(xiàn)異常。
傳輸相對其他fang時間長。
異常后很難從異常的位置繼續(xù)傳輸。
第三種方案的優(yōu)點:時間占用短,文件可斷點傳輸。操作步驟少。(絕大部分時間都是在文件的網(wǎng)絡傳輸)
第三種方案的缺點:可能引起未知問題,暫時未發(fā)現(xiàn)。
下面介紹一下第三種方案d遷移步驟:
保證Mysql版本一致,安裝配置基本一致(注意:這里的數(shù)據(jù)文件和庫表結構文件都指定在同一目錄data下)
停止兩邊的Mysql服務(A服務器--遷移--B服務器)
刪除B服務器Mysql的data目錄下所有文件
拷貝A服務器Mysql的data目錄下除了ib_logfile和.err之外的文件到B服務器data下
啟動B服務器的Mysql服務,檢測是否發(fā)生異常
遷移完成后,服務啟動正常,未發(fā)現(xiàn)其他異常問題。
備注:經(jīng)測試,源mysql的安裝目錄及數(shù)據(jù)文件目錄
可以與
目標Mysql的安裝目錄及數(shù)據(jù)文件目錄
不一致。
此時,只需要拷貝您所需移動的dbname(如上:pa、testdb)及'mysql'和'ibdata1',即可。
1、首先在桌面上雙擊打開“此電腦”軟件。
2、然后在打開的此電腦頁面中,找到并雙擊打開C盤。
3、選中需要移動的文件,再右擊選中的文件,從彈出的快捷菜單中選擇“剪切”命令。
4、在窗口中雙擊打開D盤或E盤。
5、最后鼠標右擊窗口空白處,從彈出的快捷菜單中選擇“粘貼”命令即可。
網(wǎng)頁標題:mysql數(shù)據(jù)遷移怎么搞,mysql上億數(shù)據(jù)如何快速遷移
瀏覽路徑:http://aaarwkj.com/article14/dssjcde.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供用戶體驗、做網(wǎng)站、面包屑導航、網(wǎng)站策劃、全網(wǎng)營銷推廣、靜態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)