ora睿共享 cle创建序列权限不足
解决办法
登录管理员
grant create sequence to "授权用户"
oracle创建视图权限不足
##解决办法
登录管理员
grant se睿共享 lect any table to "用户"; -- 赋予用户查询所有表权限
gran睿共享 t 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’ 无权限
解决办法
“`java
alter user 用户名 quota unlimited on `USERS`
create tablespace 名
datafile ‘/home/oracle/oraclebase/oradata/
size 1000M autoExtend on
extent management local
SegMent space management auto;
`