oracle常用建表空間,使用者,匯入匯出命令

2021-06-18 17:28:05 字數 643 閱讀 4640

刪除使用者 

drop user ## cascade; //##裡寫入使用者名稱 

刪除表空間 

drop tablespace ## including contents and datafiles cascade constraints; 

//##裡寫表空間名 

//including datafiles 刪除表空間中的資料檔案 

//cascade constraints 同時刪除tablespace中表的外來鍵參照 

建立表空間 

create temporary tablespace ## tempfile '##.dbf' size 32m 

//##寫入表空間名和存放檔名 

建立使用者 

create user username indentified by password default tablespace spacename 

給使用者授權 

grant dba to username 

根據使用者匯入檔案 

imp uaername/passwd file=d:temp.dmp full=y ignore=y 

根據使用者匯出檔案 

exp username/passwd file=d:temp.dmp 

oracle建表空間 使用者

建表空間 語法 create tablespacetablespace namedatafiledatafile pathsize 2048m autoextend on tablespace name 表空間的名稱 datafile path 資料檔案的儲存路徑,必須有讀寫的許可權,可以用chmo...

ORACLE建表空間及使用者

檢查自己的身份是否是sysdba sql show user user is sys 如果不是,使用 sql sqlplus nolog sql conn as sysdba 一 sql create user 使用者名稱 default tablespace 表空間名 identified by ...

Oracle 建使用者 表空間指令碼

建表空間 create tablespace 使用者 datafile d oradatadev 使用者 dbf size 200m autoextend onnext 50m maxsize 4096m extent management local create temporary tables...