1. 程式人生 > >PL/SQL---建立使用者、指定表空間、授權。

PL/SQL---建立使用者、指定表空間、授權。

1、建立表空間

create tablespace tablespace_name
logging 
datafile 'F:\app\tablespace_name.dbf' 
size 200m 
autoextend on 
next 50m maxsize 20480m 
extent management local; 

2、建立臨時表空間

create temporary tablespace tmp_tablespace_name
tempfile 'F:\appkaoshi_temp.dbf' 
size 100m
autoextend on 
next 50m maxsize 20480m 
extent management local;


3、建立使用者,指定表空間

create user username identified by password 
default tablespace tablespace_name
temporary tablespace tmp_tablespace_name

4、授權

grant connect,resource,dba to username;