select * from dba_roles where role='DBA';
查看是否有DBA角色,没有就创建
create role DBA;
之后授权就可以了
grant DBA to tfr
revoke DBA from tfr
本文转自aaa超超aaa 51CTO博客,原文链接:http://blog.51cto.com/10983441/1770553
select * from dba_roles where role='DBA';
查看是否有DBA角色,没有就创建
create role DBA;
之后授权就可以了
grant DBA to tfr
revoke DBA from tfr
相关文章: