码迷,mamicode.com
首页 > 数据库 > 详细

oracle中创建数据库用户,并授权

时间:2019-03-30 13:40:59      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:文件路径   quota   nbsp   文件   maxsize   space   pac   cut   acdb   

--查看表空间文件路径
select * from dba_data_files where tablespace_name=$TABLESPACE

CREATE TABLESPACE usr_aa DATAFILE ‘+ORADATA/racdb/datafile/usr_aa.dbf‘ SIZE 50 M AUTOEXTEND ON NEXT 100M MAXSIZE UNLIMITED NOLOGGING PERMANENT EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO ;

 

CREATE USER usr_aa IDENTIFIED BY password DEFAULT TABLESPACE usr_aa QUOTA UNLIMITED ON EDU_DATA QUOTA 5 M ON system ACCOUNT UNLOCK ;
grant dba to usr_aa with admin option;
grant connect , resource to usr_aa with admin option;
grant unlimited tablespace to usr_aa with admin option;
grant analyze any to usr_aa with admin option;
grant create table to usr_aa with admin option;
grant drop any table to usr_aa with admin option ;
grant alter any table to usr_aa with admin option ;
grant comment any table to usr_aa with admin option ;
grant select any table to usr_aa with admin option ;
grant insert any table to usr_aa with admin option ;
grant update any table to usr_aa with admin option ;
grant delete any table to usr_aa with admin option ;
grant select any sequence to usr_aa with admin option ;
grant execute any procedure to usr_aa with admin option ;
grant CREATE ANY JOB to usr_aa;

oracle中创建数据库用户,并授权

标签:文件路径   quota   nbsp   文件   maxsize   space   pac   cut   acdb   

原文地址:https://www.cnblogs.com/LynnChen/p/10626505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!