<<Back to DB Administration Main Page
ORA-46697: Keystore password required
SQL> CREATE PLUGGABLE DATABASE PDB03 FROM PDB01 USING MIRROR COPY PDB01_CLONE;
CREATE PLUGGABLE DATABASE PDB03 FROM PDB01 USING MIRROR COPY PDB01_CLONE
*
ERROR at line 1:
ORA-46697: Keystore password required.
*
ERROR at line 1:
ORA-46697: Keystore password required.
TDE is configured and Keystore password is supplied.
Solution:
If you have TDE configured, you must supply the keystore password for such tasks using keystore identified by password clause eg.
SQL> CREATE PLUGGABLE DATABASE PDB03 FROM PDB01 USING MIRROR COPY PDB01_CLONE KEYSTORE IDENTIFIED BY keystore_password;
Pluggable database created.
Comments
Post a Comment