how to access sys.user_history$ in aws oracle rds

0

how to access sys.user_history$ in aws oracle rds wanted to check history of a user and list previous stored encrypted passwords form the AWS ORACLE RDS( SE2)

已提问 10 个月前326 查看次数
1 回答
0

Try,

begin
    rdsadmin.rdsadmin_util.grant_sys_object(
        p_obj_name  => 'USER_HISTORY$',
        p_grantee   => 'ADMIN',
        p_privilege => 'SELECT');
end;
/

Note: p_grantee is the schema or role that you want to grant the privilege to.

For more information on Granting SELECT or EXECUTE privileges to SYS objects please refer to the following link:

https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.CommonDBATasks.System.html#Appendix.Oracle.CommonDBATasks.TransferPrivileges

AWS
已回答 10 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则