oracle笔记_系统特权
程序员文章站
2022-05-07 23:30:16
...
系统特权 | 允许执行的操作 |
create session | 连接到数据库 |
create sequence | 创建序列 |
create synonym | 创建同名对象 |
create table | 在用户模式中创建表 |
create any table | 在任何模式中创建表 |
drop table | 删除用户模式中的表 |
drop any table | 删除任何模式中的表 |
create procedure | 创建存储过程 |
create user | 创建用户 |
drop user | 删除用户 |
create view | 创建视图 |
execute any procedure | 执行任何模式中的存储过程 |
系统角色 | 角色作用 |
connect | 允许用户连接到数据库 |
resource | 允许用户创建各种数据库对象,例如表、序列和PL/SQL代码等 |