oracle使用者的匯出與匯入匯出:1、 找到你oracle安裝位置的bin目錄下的 emp.exe
如: d:\oracletools\oracle\product\10.2.0\db_1\bin
2、雙擊執行,輸入你要匯出的使用者名稱和密碼(密碼不可見)
3、輸入你匯出檔案存放的位置
如:d:\crm.dmp 【一定是bmp檔案】
匯入: 1、 建立使用者 如:crm 【如果存在crm使用者(裡面含有資料等 先刪除 drop user crm cascade)】
2、 賦權讓其擁有匯入的許可權 grant dba to crm
3、 找到你oracle安裝位置的bin目錄下的 imp.exe
4、 輸入你要匯入dmp檔案的位置
exp system/oracle@charge table=scott.dept,scott.emp file=tab1.dmp用system使用者(密碼是oracle)登入charge庫,將scott.dept跟scott.emp這2個表匯出到tab1.dmp
imp scott/oracle@charge file=tab2.dmp tables=dept,emp(這邊應該是個逗號吧)
用scott使用者匯入tab2.dmp檔案中的dept,emp表
imp system/oracle@charge file=tab2.dmp tables=dept.emp fromuser=scott touser=system
用scott使用者登入,將tab2.dmp中的dept,emp表從scott使用者匯入到system使用者
如果要匯入的資料庫中盡量讓匯入的使用者下為空,可以先drop掉該使用者. 然後再建立該使用者,再給該使用者賦許可權.然後執行匯入操作.
oracle資料庫備份與還原命令
資料匯出:
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%'\"
上面是常用的匯出,對於壓縮我不太在意,用
winzip把dmp檔案可以很好的壓縮。
不過在上面命令後面 加上 compress=y 就可以了
資料的匯入
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)
基本上上面的匯入匯出夠用了。不少情況我是將表徹底刪除,然後匯入。
注意:附錄一:
給使用者增加匯入資料許可權的操作
第一,啟動sql*puls
第二,以system/manager登陸
第三,create user 使用者名稱 identified by 密碼 (如果已經建立過使用者,這步可以省略)
第四,grant create user,drop user,alter user ,create any view ,
drop any view,exp_full_database,imp_full_database,
dba,connect,resource,create session to 使用者名字
第五, 執行-cmd-進入dmp檔案所在的目錄,
imp test_drp/[email protected]:1521/orcl buffer=9999999 file=e:/*.dmp full=y ignore=y
安裝oracle9i
szportdb\szportdb\szportdb
用sysdba 登入建立使用者:szportdb 表空間可以自己設定,也可以users
倒入資料庫。
imp szportdb/szportdb@szportdb full=y c:\szportdb.dmp ignore=
你要有足夠的許可權,許可權不夠它會提示你。
資料庫時可以連上的。可以用tnsping test 來獲得資料庫test能否連上
Oracle 匯入資料庫備份 dmp 檔案
這個命令老是忘記,於是就直接寫在部落格上,供以後參考.省的每次使用都會到網上查.經過總結,一般使用下面的這個命令基本上就可以解決問題 home oracle product bin imp 使用者名稱 密碼 full y file 備份檔案的路徑 ignore y 把上面的漢字用你實際環境的值替換即...
Oracle資料庫匯入匯出簡單備份
oracle資料庫簡單備份 方法一 1 匯出 exp c xmq pwda orcl owner c xmq file c expdb.dmp buffer 8000 2 匯入 2.1.刪除原來使用者 sqlplus system 123456sql drop user c xmq cascade ...
Oracle資料庫匯入匯出(備份還原)
一.資料庫的匯出 1 將資料庫test完全匯出,使用者名稱system 密碼manager 匯出到d daochu.dmp中 全庫匯出 exp system manager test file d daochu.dmp full y 2 將資料庫中system使用者與sys使用者的表匯出 區域性匯出...