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)

gefragt vor 10 Monaten312 Aufrufe
1 Antwort
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
beantwortet vor 10 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen