1 匯出的資料:
一、匯出指定使用者(方案)的資料:
exp system/system owner=username file=/home/file/data.dmp
(如果使用該使用者自己匯出自己的方案,可以先給該使用者賦予匯出許可權:
sql>grant export full database to username
然後用該使用者匯出資料
exp username/user_passwd onwer=username file=/home/file/data.dmp)
二、以管理員方式匯出全庫
以dba管理員全庫方式匯出全庫也可(在後面匯入時可用fromuser,touser方式匯入):
exp system/system full=y file=/home/file/data.dmp
2 給使用者指定connect及resource許可權:
grant connect,resource to username;
3 表空間磁碟配額的設定:(說明:有了上面的賦予connect及resource許可權,磁碟配額可以不用配置,即本步驟可以省略)
alter user username quota 200m on tablespacename;
(或者設定為無限制使用該錶空間:
alter user username quota unlimited on tablespacename;)
4 匯入:
imp system/system fromuser=gxulib touser=gxulib ignore=y file=c:/gxulib.dmp
exp遷移測試庫10 2 0 5
目的 將一套10.2.0.5的up unix系統的資料,遷移到一台windows環境下。遷移方案 由於不同的作業系統,為了方便遷移,只是測試,使用exp imp方式。遷移流程 一.源端匯出 1 確定資料庫大小 sql select round sum bytes 1024 1024 1024,2 f...
oracle使用exp與imp對資料遷移備份的方法
使用exp和imp命令是oracle對資料進行遷移備份的一種最簡單最常用的一種方式。在此記錄下使用的方法步驟,以備後用。首先,在老庫上使用命令 exp userid username password database owner file dmp log log 其中 後面的database是資料...
使用者資訊遷移
隨著技術的發展,企業中開始使用大量的個人計算機,因此在每個企業中基本上都有it運營部門,作用是維護企業的系統正常的執行。普通員工在使用的過程中,經常遇到系統出現問題需要重新安裝的情況。如果是公司的老員工,如何給他恢復到以前的系統環境設定?如果是新來的員工,如何與公司的其他員工保持系統環境一致性那?在...