新建表空間以及資料幫浦匯入

2021-10-03 08:23:39 字數 1332 閱讀 3058

–mytablespace : 表空間名稱

–datafile: 指定表空間對應的資料檔案(位置)

–size:表空間的初始大小

–autoextend on :自動增長,

–next: 一次自動增長的大小

–/*第3步:建立使用者並指定表空間 */

create user fc_t5 identified by fc888888

default tablespace lk_data

temporary tablespace lk_temp;

–/*第4步:給使用者授予許可權 */

grant connect,resource,dba to fc_t5;

oracle建立directory

1、新建directory的語法

create [or replace] directory directory as 『pathname』;

例如:create or replace directory dump_dir as 『d:\dump\dir』

這樣把目錄d:\dump\dir設定成dump_dir代表的directory

2、查詢有哪些directory

select * from dba_directories

3、賦權

grant read,write on directory dump_dir to user01

4、刪除

drop directory dump_dir

同乙個庫 不同使用者 加 remap_schema=fc_t2:fc_t3

匯入:impdp fc_t1/[email protected]:1521/orcl directory=dump_dir logfile=lk-20191204-impdp.log remap_schema=lop1:fc_t1 table_exists_action=replace dumpfile=c:\dbbak\dmp\data_20191203_30000.dmp

–expdp [為使用者名稱]/[密碼]@[服務名]

–schemas=[為使用者名稱]

–dumpfile=[匯出資料庫檔案(可自命名)]

–directory=[目錄名]

–logfile=[日誌檔案檔名(可自命名)]

–impdp [使用者名稱]/[密碼]@[服務名]

–remap_schema=[源使用者名稱1]:[目標使用者名稱2]

–table_exists_action=replace /存在的表動作(覆蓋)/

–directory=[目錄名]

–dumpfile=[.dmp檔名]

–logfile=[.log檔名]

oracle建立表空間並用資料幫浦匯入資料步驟

1 建立表空間 create bigfile tablespace zwj logging datafile f oracle zwj.ora size 1000m autoextend on next 1000m maxsize unlimited extent management local ...

資料幫浦匯入匯出表

將 hhn庫下 scott 使用者的 emp 表和 dept 表匯入到 hhn庫下 tuser 使用者下。1 將 scott 使用者的 emp 表和 dept 表匯出 在 scott 使用者下建立匯出的目錄 create or replace directory exp file dest as e...

oracle新建表空間和使用者 匯入匯出資料庫檔案

oracle資料庫可以建立多個例項,每個例項可以建立多個表空間,每個表空間下可以建立多個使用者 同時使用者也屬於表空間對應的例項 orcl是oracle資料庫預設的例項,一般都是在這個例項下建立表空間 使用者。在dos下建立表空間和使用者 首先輸入 sqlplus 提示輸入使用者名稱 再輸入sys ...