标签:create 角色 where
select * from dba_roles where role=‘DBA‘;
查看是否有DBA角色,没有就创建
create role DBA;
之后授权就可以了
grant DBA to tfr
revoke DBA from tfr
DBA角色不存在
原文地址:http://10983441.blog.51cto.com/10973441/1770553