oracle 匯入匯出資料

2022-02-12 09:22:43 字數 1059 閱讀 2835

假設現在乙個資料庫 orcl ,裡面有乙個表空間,表空間裡有兩個使用者 scott 和 coder ,如果這裡兩個使用者都用 dba 的許可權,如果我們想把 orcl 的資料匯出,然後匯入另乙個資料庫(other)中,我把步驟記錄下來:

1.從 orcl 中匯出資料 (首先保證 oracle 目錄中的 bin 路徑已經新增到 path 環境變數裡)

執行 cmd;

輸入 exp;

輸入使用者名稱

/密碼; (scott

/tiger)

一路確定;

知道看見輸入使用者名稱:輸入scott;

就會匯出了。

2.建立新的資料庫 other

3.在新的資料庫上建立新使用者和表空間

create user scott identified by tiger; 

--建立使用者 scott

create user coder identified by tiger;

--建立使用者 coder

create tablespace other_data datafile

'e:/oracle/other_data.dbf

'size 200m;

--建立表空間 other_data ,設定位置和大小

alter user scott

default

tablespace other_data;

--新增 scott 到 other_data 空間裡

alter user coder

default

tablespace other_data;

--新增 coder 到 other_data 空間裡

grant dba to scott;

--授權 dba 許可權

grant dba to coder;

4.匯入資料

執行 cmd;

imp;

scott

/tiger;

...scott;

oracle資料匯入匯出

語法 imp userid password 資料庫全域性名 file dmp檔案的目錄 其它引數 獲取幫助,敲入 imp help y import常用的引數 1 file 指定匯入檔名 fromuser 允許匯入指定的使用者擁有的表 full full y時,匯入dmp檔案中所有的事物 igno...

Oracle資料匯入匯出

資料庫的維護過程,難免遇到一些表的備份和恢復工作。為了方便起見,我將這些重複的工作整理成了執行在windows上的批處理,和執行在aix伺服器上的kshell指令碼。指令碼的作業內容就是,指定具體的表集合,分檔案逐表備份和恢復。如果是經常性的指定的固定表的話,可以修改以陣列方式的指令碼。如果是經常改...

oracle 資料匯出匯入

資料庫的匯出匯入 匯出表步驟 1 匯出表結構與資料 2 匯出序列 3 匯出觸發器 4 匯出檢視 匯出表工具 plsql developer 設定環境變數 變數名 nls lang 變數值 american america.zhs16gbk 這裡主要是解決資料庫的字符集問題,根據資料庫的字符集設定,保...