Loading

create sequence创建序列和视图权限不足

oracle创建序列权限不足

解决办法

登录管理员

grant create sequence to "授权用户"

oracle创建视图权限不足

解决办法

登录管理员

grant select any table to "用户"; -- 赋予用户查询所有表权限
grant create view to "用户"; -- 创建视图
grant select any dictionary to "用户"; -- 授予权限

oracle创建函数权限不足

解决办法

grant create any procedure to 用户名;

oracle解锁用户

ALTER USER 用户名 account unlock;

授予连接数据库权限

grant create session to 用户名;

ORA-01950: 对表空间 ‘USERS’ 无权限

解决办法

alter user 用户名  quota unlimited on `USERS`

create tablespace 名
datafile '/home/oracle/oraclebase/oradata/orcl/名.dbf'
size 1000M autoExtend on 
extent management local 
SegMent space management auto;

`
posted @ 2021-10-26 16:39  Rzk  阅读(526)  评论(0编辑  收藏  举报