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)

demandé il y a 10 mois327 vues
1 réponse
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
répondu il y a 10 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions