oracle 資料匯入和匯出 原創

2022-04-05 04:55:37 字數 671 閱讀 6399

oracle的資料匯入匯出必須是在兩個地方建立相同的使用者才能完整匯入(本地匯入新的資料庫需重建許可權)。所以匯入就得按以下步驟進行:

假定伺服器端使用者為puser

伺服器端匯出可以這樣做:

匯出資料:exp puser/padmin@a file=c:\bb.dmp full=y

本地資料庫可以這樣做:

1.刪除使用者:drop user puser cascade;

2.建立使用者:create user puser identified by padmin

3.賦於許可權:grant connect,resource to puser

4.授予dba:grant dba to puser (可以不做)

5.匯入資料:imp puser/padmin@pnxd file=c:\bb.dmp ignore=y full=y

注:pnxd是建立的網路服務名

如果資料庫有clob這樣的字段就必須建立表空間,可以這樣做:

create tablespace p2p_nxd

logging

size 32m

autoextend on

next 32m maxsize 2048m

extent management local;

datafile 是oracle安裝的路徑

oracle 資料匯入和匯出 原創

oracle的資料匯入匯出必須是在兩個地方建立相同的使用者才能完整匯入 本地匯入新的資料庫需重建許可權 所以匯入就得按以下步驟進行 假定伺服器端使用者為puser 伺服器端匯出可以這樣做 匯出資料 exp puser padmin a file c bb.dmp full y 本地資料庫可以這樣做 ...

oracle 資料匯入和匯出 原創

oracle的資料匯入匯出必須是在兩個地方建立相同的使用者才能完整匯入 本地匯入新的資料庫需重建許可權 所以匯入就得按以下步驟進行 假定伺服器端使用者為puser 伺服器端匯出可以這樣做 匯出資料 exp puser padmin a file c bb.dmp full y 本地資料庫可以這樣做 ...

Oracle 資料匯出和匯入

可能我的部落格裡面其他的文件,框架知識,技術實現你都看不上眼,但是這個估計你會需要。oracle 資料cmd匯出和匯入 匯出的方式 imp 匯入資料庫 1.直接匯入資料表 imp username passwork orcl file d aa.dmp eg imp 使用者名稱 密碼 orcl fi...