方法一:利用PL/SQL Developer工具導(dǎo)出:
菜單欄---->Tools---->Export Tables,如下圖,設(shè)置相關(guān)參數(shù)即可:
方法二:利用cmd的操作命令導(dǎo)出,詳情如下:
1:G:\Oracle\product\10.1.0\Client_1\NETWORK\ADMIN目錄下有個tnsname.ora文件,內(nèi)容如下:
復(fù)制代碼 代碼如下:
CMSTAR =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 172.18.13.200)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = cmstar)
)
)
其中:CMSTAR為數(shù)據(jù)庫名,HOST為IP地址,所以可以仿效上面的例子手動添加數(shù)據(jù)錄連接。
2:用cmd進(jìn)入命令行
輸入:tnsping cmstar
就是測試172.18.13.200是否連接成功
3:導(dǎo)入與導(dǎo)出,如下:
數(shù)據(jù)導(dǎo)出:
1 將數(shù)據(jù)庫TEST完全導(dǎo)出,用戶名system 密碼manager 導(dǎo)出到D:\daochu.dmp中
exp system/manager@TEST file=d:\daochu.dmp full=y
2將數(shù)據(jù)庫中system用戶與sys用戶的表導(dǎo)出
expsystem/manager@TESTfile=d:\daochu.dmpowner=(system,sys)
3將數(shù)據(jù)庫中的表table1、table2導(dǎo)出
expsystem/manager@TESTfile=d:\daochu.dmptables=(table1,table2)
4將數(shù)據(jù)庫中的表table1中的字段filed1以"00"打頭的數(shù)據(jù)導(dǎo)出
expsystem/manager@TESTfile=d:\daochu.dmptables=(table1)query=\"wherefiled1like'00%'\"
上面是常用的導(dǎo)出,對于壓縮我不太在意,用winzip把dmp文件可以很好的壓縮。
不過在上面命令后面加上compress=y就可以了
數(shù)據(jù)的導(dǎo)入
1將D:\daochu.dmp中的數(shù)據(jù)導(dǎo)入TEST數(shù)據(jù)庫中。
impsystem/manager@TESTfile=d:\daochu.dmp
上面可能有點(diǎn)問題,因為有的表已經(jīng)存在,然后它就報錯,對該表就不進(jìn)行導(dǎo)入。
在后面加上ignore=y就可以了。
2將d:\daochu.dmp中的表table1導(dǎo)入
impsystem/manager@TESTfile=d:\daochu.dmptables=(table1)
注意事項:導(dǎo)出dmp數(shù)據(jù)時需要有導(dǎo)出表的權(quán)限的用戶,否則不能導(dǎo)出。
PL/SQL Developer是Oracle數(shù)據(jù)庫中用于導(dǎo)入或?qū)С鰯?shù)據(jù)庫的主要工具,本文主要介紹了利用PL/SQL Developer導(dǎo)入和導(dǎo)出數(shù)據(jù)庫的過程,并對導(dǎo)入或?qū)С鰰r的一些注意事項進(jìn)行了說明,接下來我們就一一介紹。
導(dǎo)出步驟:
1 tools ->export user object 選擇選項,導(dǎo)出.sql文件。
2 tools ->export tables-> Oracle Export 選擇選項導(dǎo)出.dmp文件。
導(dǎo)入步驟:
注:導(dǎo)入之前最好把以前的表刪除,當(dāng)然導(dǎo)入另外數(shù)據(jù)庫除外。
1 tools->import tables->SQL Inserts 導(dǎo)入.sql文件。
2 tools->import talbes->Oracle Import然后再導(dǎo)入dmp文件。
一些說明:
Tools->Export User Objects導(dǎo)出的是建表語句(包括存儲結(jié)構(gòu))。
Tools->Export Tables里面包含三種導(dǎo)出方式,三種方式都能導(dǎo)出表結(jié)構(gòu)以及數(shù)據(jù),如下:
Oracle Export
Sql Insert
pl/sql developer
第一種是導(dǎo)出為.dmp的文件格式,.dmp文件是二進(jìn)制的,可以跨平臺,還能包含權(quán)限,效率也很不錯,用得最廣 。
第二種是導(dǎo)出為.sql文件的,可用文本編輯器查看,通用性比較好,但效率不如第一種,適合小數(shù)據(jù)量導(dǎo)入導(dǎo)出。尤其注意的是表中不能有大字段(blob,clob,long),如果有,會提示不能導(dǎo)出(提示如下: table contains one or more LONG columns cannot export in sql format,user Pl/sql developer format instead)。
第三種是導(dǎo)出為.pde格式的,.pde為Pl/sql developer自有的文件格式,只能用Pl/sql developer自己導(dǎo)入導(dǎo)出,不能用編輯器查看。
您可能感興趣的文章:- 使用imp和exp命令對Oracle數(shù)據(jù)庫進(jìn)行導(dǎo)入導(dǎo)出操作詳解
- Oracle導(dǎo)入導(dǎo)出數(shù)據(jù)的幾種方式
- oracle數(shù)據(jù)與文本導(dǎo)入導(dǎo)出源碼示例
- oracle數(shù)據(jù)庫導(dǎo)入導(dǎo)出命令解析
- 利用PL/SQL從Oracle數(shù)據(jù)庫導(dǎo)出和導(dǎo)入數(shù)據(jù)
- Oracle數(shù)據(jù)庫密碼重置、導(dǎo)入導(dǎo)出庫命令示例應(yīng)用
- oracle數(shù)據(jù)庫導(dǎo)入導(dǎo)出命令使用方法
- oracle 數(shù)據(jù)泵導(dǎo)入導(dǎo)出介紹
- Oracle 數(shù)據(jù)庫導(dǎo)出(exp)導(dǎo)入(imp)說明
- 淺談入門級oracle數(shù)據(jù)庫數(shù)據(jù)導(dǎo)入導(dǎo)出步驟