--建立資料資料表空間create tablespace CICIloggingdatafile '/usr/lib/oracle/xe/oradata/cici/CICI.DBF'size 32mautoextend onextent management local;--建立使用者並指定資料表空間CREATE USER cici IDENTIFIED BY ciciPROFILE DEFAULTDEFAULT TABLESPACE CICIACCOUNT UNLOCK;GRANT connect, resource TO cici;grant create session to cici;
--登入oracle
#sqlplus
sql>conn system/system
-- 建立臨時資料資料表空間
create temporary tablespace CICITEMP
tempfile 'D:\oraclexe\app\oracle\oradata\CICI\CICITEMP.DBF'
size 32m
autoextend on
extent management local;
--建立資料資料表空間
create tablespace CICI
logging
datafile 'D:\oraclexe\app\oracle\oradata\CICI\CICI.DBF'
size 32m
autoextend on
extent management local;
--建立使用者並指定資料表空間
CREATE USER cici IDENTIFIED BY cici
PROFILE DEFAULT
DEFAULT TABLESPACE CICI
TEMPORARY TABLESPACE CICITEMP
ACCOUNT UNLOCK;
GRANT connect, resource TO cici;
grant create session to cici;
-- 串聯刪除使用者 包含使用者下所有對象
drop user dzysc cascade;
-- 刪除資料表空間
drop tablespace CICI including contents and datafiles;