匯入匯出資料庫

2021-09-01 04:02:39 字數 747 閱讀 1894

1.匯出整個資料庫

mysqldump -u 使用者名稱 -p 資料庫名 > 匯出的檔名

2.匯出乙個表

mysqldump -u 使用者名稱 -p 資料庫名 表名》 匯出的檔名

3. 匯入資料庫

mysql 資料庫名 < 檔案

mysql -u root 

資料庫名

檔案

4.備份時,排除某張表的

mysqldump -u root 

db_name

--ignore-table=db_name.table_name  > ~/tool/dp.dump

5. 使用pv命令監視mysql恢復資料的過程

sudo apt-get install pv,

pv file | mysql -uroot rocket_finance

通過ssh把遠端及其上的檔案複製到本地:

scp -r -p port user@ip:remote_path local_path

-r 表示 遞迴整個目錄

-p 表示 指定埠

port 表示 埠號

user@ip 表示 使用使用者user登入ip伺服器

remote_path 表示 伺服器上的檔案

local_path 表示 儲存在本地的檔案路徑和檔名

scp lknode153x:/home/lkadmin/test.txt /home/haigui/test.txt

資料庫匯入匯出

啥 也不說了。資料的匯出 1 將資料庫 test 完全匯出 使用者名稱 system 密碼manager 匯出到d daochu.dmp中 exp system manager test file d daochu.dmp full y 2 將資料庫中 system 使用者與sys 使用者的表匯出 ...

資料庫匯入匯出

檢視檔案位置 select from dba directories 建立 create or replace directory my dir as usr datapump create or replace directory my logdir as usr logs 匯出單個例項 expd...

資料庫匯入匯出

spool緩衝池 附 oracle匯出匯入 在實際專案中,資料庫的匯出與匯入是一項非常重要的工作,它常常用於資料庫的備份及恢復,或是用於資料的接收 來自上游系統 和下發 給予下游系統 oracle中匯出匯入的方法有很多,主要有以下幾項 1 匯出insert語句,通過執行sql來匯入 2 通過pl s...