Oracle表空间,用户创建及授权

第1步:创建临时表空间  
create temporary tablespace yuhang_temp
tempfile 'D:\oracledata\yuhang_temp.dbf'
size 50m  
autoextend on  
next 50m maxsize 20480m   

  

第2步:创建数据表空间  
create tablespace yuhang_data   
datafile 'D:\oracledata\yuhang_data.dbf'
size 1024m  
autoextend on  
next 64m
maxsize 20480m (一般不需要)
 
(asm管理)
create tablespace CEN_PORTAL_V20   
datafile '+DATADG'
size 1024m  
autoextend on  
next 64m ;

  

第3步:创建用户并指定表空间  
create user yuhang identified by "yuhang" 
default tablespace yuhang_data  
temporary tablespace yuhang_temp

  

第4步:给用户授予权限  
grant connect,resource,dba to yuhang;
posted @ 2022-09-01 10:47  四毛二  阅读(31)  评论(0编辑  收藏  举报