ORACLE匯出表匯入表資料語法

2021-08-02 18:58:21 字數 1954 閱讀 8642

exp/imp工具:

帶引數:rows=y   —— 帶資料匯出匯入;rows=n    —— 不帶資料的匯出匯入,只移植結構。

例如:

只匯出3張表的結構:

exp user/pasword@dbservername owner=user tables=(table1,table2,table3) rows=n file=c:\1.dmp

連帶資料匯出: 

exp user/pasword@dbservername owner=user tables=(table1,table2,table3) rows=y file=c:\2.dmp

imp user2/pasword@dbservername2 fromuser=user touser=user2 file=c:\1.dmp 

或者 

imp user2/pasword@dbservername2 fromuser=user touser=user2 file=c:\2.dmp 

匯出乙個使用者下的所有表資料

常用的命令

exp user/password@instance file=file.dmp rows=y log=log_name

其中username/password為匯出使用者的使用者名稱和密碼

instance為匯出的例項名

匯出乙個使用者下的表結構為sql檔案

使用命令好像匯出的都是dmp檔案

可以使用plsql軟體在tools--?export user object

如果不要到處table space,不要勾include storage

選擇匯出的路徑檔名,export可以直接匯出了

匯入乙個使用者下的所有表資料

imp username/password file=file.dmp fromuser=user1 touser=user2 rows=y

其中username/password為匯入到

資料庫的使用者名稱和密碼/

fromuser為備份資料庫時的使用者

touser為匯入資料庫的使用者,一般和username同

一、資料匯出(

exp.exe)

1、將指定使用者的資料全部匯出:

將資料庫

orcl

中scott

使用者的資料全部物件匯出

exp scott/accp@orcl file=d:\daochu.dmp

2、將指定使用者的指定表的資料匯出:

將資料庫

orcl

中的scott

使用者的表

emp、

dept匯出

exp scott/accp@orcl file= d:\daochu.dmptables=(emp,dept)

3、將指定使用者的指定表空間的資料匯出:

將資料庫

orcl

中的表空間

testspace匯出

exp scott/accp@orcl file=d:\daochu.dmptablespaces=(testspace)

二、資料匯入(

imp.exe)

1、把指定的資料檔案全部匯入到指定的使用者中

:full=y

意思是值全部資料

將d:\daochu.dmp

中的資料匯入

orcl

資料庫的

system

使用者中,

imp scott/accp@orcl file=d:\daochu.dmp full=y

2、把指定的資料檔案全部匯入到指定的使用者中:

如果匯入時,資料表已經存在,將報錯,對該錶不會進行匯入;加上

ignore=y

即可,表示忽略現有表,在現有表上追加記錄。

imp scott/accp@orcl file=d:\daochu.dmp  full=y  ignore=y

oracle 匯入匯出表資料

感謝博主分享 system manager test system 使用者名稱 manager 密碼 test 資料庫位址 file 要將檔案匯出的位置 tables 要匯出的表名 owner 匯出表的所屬使用者 一 資料匯出 1 將資料庫test完全匯出,使用者名稱system 密碼manager...

Oracle 匯入匯出表

下面介紹的是匯入匯出的例項,向匯入匯出看例項基本上就可以完成,因為匯入匯出很簡單。資料匯出 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 exp system manager orcl 127.0.0.1 file d daochu.dm...

oracle匯出匯入備份表資料

今天遇到了乙個很常見的需求,備份資料庫資料。輕車熟路,用pl sql developer的tools export tables,選好oracle匯出程式的路徑和檔案匯出的路徑,點下右下角export即可。不過試了好幾次,下面的提示欄都已經顯示完成了,不過桌面上還是沒有dmp檔案。我首先是懷疑是pl...