oracle数据库用户权限设置

授予用户登录数据库的权限: 
grant CONNECT to 用户名;
grant create session to用户名;
授予用户操作表空间的权限:

grant unlimited tablespace to 用户名;
grant create tablespace to 用户名;
grant alter tablespace to 用户名;
grant drop tablespace to 用户名;
grant manage tablespace to 用户名;
授予用户操作表的权限:

grant create table to 用户名; (包含有create index权限, alter table, drop table权限)
授予用户操作视图的权限:
grant create view to 用户名; (包含有alter view, drop view权限)
授予用户操作触发器的权限:
grant create trigger to 用户名; (包含有alter trigger, drop trigger权限)
授予用户操作存储过程的权限:
grant create procedure to 用户名; (包含有alter procedure, drop procedure 和function 以及 package权限)
授予用户操作序列的权限:
grant create sequence to 用户名; (包含有创建、修改、删除以及选择序列) 

    原文作者:taxue1011
    原文地址: https://blog.csdn.net/taxue1011/article/details/89887795
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞