數(shù)據(jù)導出:
創(chuàng)新新互聯(lián),憑借十余年的網(wǎng)站建設、網(wǎng)站制作經(jīng)驗,本著真心·誠心服務的企業(yè)理念服務于成都中小企業(yè)設計網(wǎng)站有千余家案例。做網(wǎng)站建設,選成都創(chuàng)新互聯(lián)。
1將數(shù)據(jù)庫TEST完全導出,用戶名system密碼manager導出到D:\daochu.dmp中
expsystem/manager@TESTfile=d:\daochu.dmpfull=y
2將數(shù)據(jù)庫中system用戶與sys用戶的表導出
expsystem/manager@TESTfile=d:\daochu.dmpowner=(system,sys)
3將數(shù)據(jù)庫中的表table1、table2導出
expsystem/manager@TESTfile=d:\daochu.dmptables=(table1,table2)
4將數(shù)據(jù)庫中的表table1中的字段filed1以"00"打頭的數(shù)據(jù)導出
expsystem/manager@TESTfile=d:\daochu.dmptables=(table1)query=\"wherefiled1like?'00%'\"
數(shù)據(jù)導出具體如下:
將數(shù)據(jù)庫TEST完全導出,用戶名system 密碼manager 導出到D:\daochu.dmp中。
將數(shù)據(jù)庫中system用戶與sys用戶的表導出。
將數(shù)據(jù)庫中的表table1 、table2導出。
將數(shù)據(jù)庫中的表table1中的字段filed1以"00"打頭的數(shù)據(jù)導出。
將D:\daochu.dmp 中的數(shù)據(jù)導入 TEST數(shù)據(jù)庫中。
將d:\daochu.dmp中的表table1 導入。
方法/步驟
用pl/sql developer導出表的數(shù)據(jù)時有三種方式:Oracle Export,Sql Insert,pl/sql developer
區(qū)別
導出數(shù)據(jù)到excel文件
excel數(shù)據(jù)導入到數(shù)據(jù)庫
PL/SQL Developer是Oracle數(shù)據(jù)庫中用于導入或導出數(shù)據(jù)庫的主要工具之一,這里主要介紹如何利用PL/SQL Developer導入和導出數(shù)據(jù)庫,并對導入或導出時的一些注意事項進行相關說明。1、導出步驟1.1. tools -export user object 選擇選項,導出.sql文件 說明:導出的是建表語句(包括存儲結構)
1.2. tools -export tables- Oracle Export 選擇選項導出.dmp文件 說明:包含三種導出方式,三種方式都能導出表結構以及數(shù)據(jù),如下:
第一種是導出為.dmp的文件格式,.dmp文件是二進制的,可以跨平臺,還能包含權限,效率也很不錯,用得最為廣泛 。
第二種是導出為.sql文件的,可用文本編輯器查看,通用性比較好,但效率不如第一種,適合小數(shù)據(jù)量導入導出。尤其注意的是表中不能有大字段(blob,clob,long),如果有,會提示不能導出(提示如下: table contains one or more LONG columns cannot export in sql format,user Pl/sql developer format instead)。
第三種是導出為.pde格式的,.pde為Pl/sql developer自有的文件格式,只能用Pl/sql developer自己導入導出,不能用編輯器查看。
2.導入步驟:a.tools-import tables-SQL Inserts 導入.sql文件。b. tools-import talbes-Oracle Import然后再導入dmp文件。 說明:和導出類似,另外,導入之前最好把以前的表刪除,當然導入另外數(shù)據(jù)庫除外。
PL SQL 的tool 菜單下面有一個export objects ,點開這個可以然后選擇你要選擇的對象,選擇保存位置,導出就可以了, 所有對象類型都可以
Oracle數(shù)據(jù)導入導出imp/exp
功能:Oracle數(shù)據(jù)導入導出imp/exp就相當與oracle數(shù)據(jù)還原與備份。
大多情況都可以用Oracle數(shù)據(jù)導入導出完成數(shù)據(jù)的備份和還原(不會造成數(shù)據(jù)的丟失)。
Oracle有個好處,雖然你的電腦不是服務器,但是你裝了oracle客戶端,并建立了連接
(通過Net Configuration Assistant添加正確的服務命名,其實你可以想成是客戶端與服務器端 修了條路,然后數(shù)據(jù)就可以被拉過來了)
這樣你可以把數(shù)據(jù)導出到本地,雖然可能服務器離你很遠。
你同樣可以把dmp文件從本地導入到遠處的數(shù)據(jù)庫服務器中。
利用這個功能你可以構建倆個相同的數(shù)據(jù)庫,一個用來測試,一個用來正式使用。
執(zhí)行環(huán)境:可以在SQLPLUS.EXE或者DOS(命令行)中執(zhí)行,
DOS中可以執(zhí)行時由于 在oracle 8i 中 安裝目錄\$ora10g\BIN被設置為全局路徑,
該目錄下有EXP.EXE與IMP.EXE文件被用來執(zhí)行導入導出。
oracle用java編寫,我想SQLPLUS.EXE、EXP.EXE、IMP.EXE這倆個文件是被包裝后的類文件。
SQLPLUS.EXE調用EXP.EXE、IMP.EXE他們所包裹的類,完成導入導出功能。
下面介紹的是導入導出的實例,向導入導出看實例基本上就可以完成,因為導入導出很簡單。
數(shù)據(jù)導出:
1 將數(shù)據(jù)庫TEST完全導出,用戶名system 密碼manager 導出到D:\daochu.dmp中
exp system/manager@TEST file=d:\daochu.dmp full=y
2 將數(shù)據(jù)庫中system用戶與sys用戶的表導出
exp system/manager@TEST file=d:\daochu.dmp owner=(system,sys)
3 將數(shù)據(jù)庫中的表table1 、table2導出
exp system/manager@TEST file=d:\daochu.dmp tables=(table1,table2)
4 將數(shù)據(jù)庫中的表table1中的字段filed1以"00"打頭的數(shù)據(jù)導出
exp system/manager@TEST file=d:\daochu.dmp tables=(table1) query=\" where filed1 like '00%'\"
上面是常用的導出,對于壓縮我不太在意,用winzip把dmp文件可以很好的壓縮。
不過在上面命令后面 加上 compress=y 就可以了
數(shù)據(jù)的導入
1 將D:\daochu.dmp 中的數(shù)據(jù)導入 TEST數(shù)據(jù)庫中。
imp system/manager@TEST file=d:\daochu.dmp
上面可能有點問題,因為有的表已經(jīng)存在,然后它就報錯,對該表就不進行導入。
在后面加上 ignore=y 就可以了。
2 將d:\daochu.dmp中的表table1 導入
imp system/manager@TEST file=d:\daochu.dmp tables=(table1)
基本上上面的導入導出夠用了。不少情況我是將表徹底刪除,然后導入。
注意:
你要有足夠的權限,權限不夠它會提示你。
數(shù)據(jù)庫時可以連上的??梢杂胻nsping TEST 來獲得數(shù)據(jù)庫TEST能否連上。
數(shù)據(jù)導出:
exp hkb/hkb@boss_14 full=y file=c:\orabackup\hkbfull.dmp log=c:\orabackup\hkbfull.log;
導出注意事項:導出的是當前用戶的的數(shù)據(jù),當前用戶如果有DBA的權限,則導出所有數(shù)據(jù)!
同名用戶之間的數(shù)據(jù)導入:
imp hkb/hkb@xe file=c:\orabackup\hkbfull.dmp log=c:\orabackup\hkbimp.log full=y
不同名之間的數(shù)據(jù)導入:
imp system/test@xe fromuser=hkb touser=hkb_new file=c:\orabackup\hkbfull.dmp
log=c:\orabackup\hkbimp.log;
導出dmp:選擇oracle導出,找到bin下面的imp.exe,設定導出文件名導出
導出表數(shù)據(jù),查詢全表數(shù)據(jù)(不帶rowid),全部選中右鍵導出SQL文件