資料庫匯入匯出

2021-09-05 18:34:58 字數 1057 閱讀 2298

啥 也不說了。

資料的匯出

1 將資料庫

test

完全匯出

,使用者名稱

system

密碼manager

匯出到d:\daochu.dmp中

exp system/manager@test file=d:\daochu.dmp full=y

2 將資料庫中

system

使用者與sys

使用者的表匯出

exp system/manager@test file=d:\daochu.dmp owner=(system,sys)

3 將資料庫中的表

table1

、table2匯出

exp system/manager@test file=d:\daochu.dmp tables=(table1,table2)

4 將資料庫中的表

table1

中的字段

filed1

以"00"

打頭的資料匯出

exp system/manager@test file=d:\daochu.dmp tables=(table1) query=\" where filed1 like '00%'\"

用winzip

把dmp

檔案可以很好的壓縮。

不過在上面命令後面加上

compress=y

就可以了

資料的匯入

1 將d:\daochu.dmp

中的資料匯入

test

資料庫中。

imp system/manager@test file=d:\daochu.dmp

上面可能有點問題,因為有的表已經存在,然後它就報錯,對該錶就不進行匯入。

在後面加上

ignore=y

就可以了。

2 將d:\daochu.dmp

中的表table1 匯入

imp system/manager@test file=d:\daochu.dmp tables=(table1)

匯入匯出資料庫

1.匯出整個資料庫 mysqldump u 使用者名稱 p 資料庫名 匯出的檔名 2.匯出乙個表 mysqldump u 使用者名稱 p 資料庫名 表名 匯出的檔名 3.匯入資料庫 mysql 資料庫名 檔案 mysql u root 資料庫名 檔案 4.備份時,排除某張表的 mysqldump u...

資料庫匯入匯出

檢視檔案位置 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...