<<Back to DB Administration Main Page
ORA-65104: operation not allowed on an inactive pluggable database
SQL> alter pluggable database TEST_CLON open;alter pluggable database TEST_CLON open
*
ERROR at line 1:
ORA-65104: operation not allowed on an inactive pluggable database
Cause
The pluggable database status was UNUSABLE. It was still being created or there was an error during the create operation. A PDB can only be opened if it is successfully created and its status is marked as NEW in cdb_pdbs.status column
SQL> select PDB_NAME,STATUS from cdb_pdbs;
PDB_NAME STATUS
-------------------- ---------------------------
PDB$SEED NORMAL
TEST_CLON UNUSABLE
Solution:
Drop the PDB and create it again.
Comments
Post a Comment