<<Back to Oracle DB Security Main Page
ORA-28447: insufficient privilege to execute ALTER DATABASE DICTIONARY statement
SQL> ALTER DATABASE DICTIONARY ENCRYPT CREDENTIALS;ALTER DATABASE DICTIONARY ENCRYPT CREDENTIALS
*
ERROR at line 1:
ORA-28447: insufficient privilege to execute ALTER DATABASE DICTIONARY
statement
Solution:
Login as syskm and re-run the command
$ sqlplus admin/password@PDB01 as syskm
SQL*Plus: Release 18.0.0.0.0 - Production on Tue Feb 19 13:06:09 2019
Version 18.3.0.0.0
Copyright (c) 1982, 2018, Oracle. All rights reserved.
Connected to:
Oracle Database 18c Enterprise Edition Release 18.0.0.0.0 - Production
Version 18.3.0.0.0
SQL>
SQL> ALTER DATABASE DICTIONARY ENCRYPT CREDENTIALS;
Database dictionary altered.
Comments
Post a Comment