pl_sql操作--激活提升权限scott用户

--1.登录系统管理员身份
    conn system/123456
--2.给scott用户解锁
    alter user scott account unlock;
--3.更改scott用户密码
    alter user scott identified by tiger
--4.验证登录
    conn scott/tiger
--提升scott创建视图的权限
grant create view to scott;
--提升scott创建public synonym权限
grant public create synonym  to scott;
--私有权限 
grant create synonym to scott;

  --提升debug权限
  grant debug connect session to scott;

原文地址:https://www.cnblogs.com/ylw666/p/6852706.html