資料庫匯出
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%'\"
資料庫匯入
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)
資料匯出:
exp hkb/hkb@boss_14 full=y file=c:\orabackup\hkbfull.dmp log=c:\orabackup\hkbfull.log;
匯出注意事項:匯出的是當前使用者的的資料,當前使用者如果有dba
的許可權,則匯出所有資料!
同名使用者之間的資料匯入:
imp hkb/hkb@xe file=c:\orabackup\hkbfull.dmp log=c:\orabackup\hkbimp.log full=y
不同名之間的資料匯入:
imp system/test@xe fromuser=hkb touser=hkb_new file=c:\orabackup\hkbfull.dmp
log=c:\orabackup\hkbimp.log;
a.11g的
exp匯出空表提示
exp-00011:
表不存在
原因:11g
預設建立乙個表時不分配
segment
,只有在插入資料時才會產生(當然也可以強制分配),以節省磁碟空間。
對於已經存在的空表解決辦法:
就是想辦法讓空表有segment
,第一種:可以通過插入資料的方式(不想要這些資料可以回滾),只要有insert
動作就會分配
segment
;第二種:就是強制分配:alter table tablename allocate extent;
為了後面建立的錶能直接分配segment
:修改引數deferred_segment_creation
(11g
新增的)。該引數即指是否延遲建立
segment
,預設為
true
。如果想讓表建立時就分配
segment
,那麼久應該修改該引數為
false
即alter system set deferred_segment_creation=false;
Oracle 資料庫 匯入匯出
匯入匯出時要,通過 執行 進行到oracle的安裝目錄的 bin 目錄下導 例如 d oracle product 10.1.0 db 1 bin 匯出分三種 匯出 表 方案 資料庫 1.1.1 匯出自己的表 說明 使用者 密碼 資料庫例項 表名 可多個 檔案路徑 exp userid scott ...
oracle資料庫匯入匯出
用工具匯入 匯出 資料 工具 t 匯出表 x 工具 t 匯出表 x 所選執行檔案位置 e oracle product 10.2.0 db 1 bin imp.exe exp.exe 命令匯入匯出 oracle匯入dmp檔案命令 1 dmp檔案中的資料匯入資料庫 1.首先進入cmd命令視窗 2.執行...
Oracle資料庫匯入匯出
我們經常會在資料備份或環境移至的時候用到oracle的匯入匯出 下面我們來詳細看一下匯入匯出的步驟 1.命令列下匯出dmp檔案 資料匯出,可以帶版本 expdp bp oracle bp oracle orcl directory dump dir dumpfile bp oracle.dmp ve...