ALTER DATABASE BEGIN BACKUP triggers ORA-65011
(Doc ID 1989773.1)
Last updated on FEBRUARY 27, 2019
Applies to:
Oracle Database - Enterprise Edition - Version 12.1.0.1 and laterOracle Database Exadata Cloud Machine - Version N/A and later
Oracle Cloud Infrastructure - Database Service - Version N/A and later
Oracle Database Cloud Exadata Service - Version N/A and later
Oracle Database Exadata Express Cloud Service - Version N/A and later
Information in this document applies to any platform.
Symptoms
Prior to "Alter database backup", If any pdb is dropped , it causes issue
SQL> alter database begin backup;
alter database begin backup
*
ERROR at line 1:
ORA-65011: Pluggable database does not exist.
== Test Case == SQL> SELECT pdb_name, status FROM dba_pdbs ORDER BY pdb_name PDB_NAME STATUS -------------------- --------- PDB$SEED NORMAL PDB1 NORMAL PDB2 NORMAL PDB3 NORMAL <======= SQL> ALTER PLUGGABLE DATABASE pdb3 CLOSE; SQL> DROP PLUGGABLE DATABASE pdb3 INCLUDING DATAFILES; SQL> SELECT pdb_name, status FROM dba_pdbs ORDER BY pdb_name PDB_NAME STATUS -------------------- --------- PDB$SEED NORMAL PDB1 NORMAL PDB2 NORMAL >>> pdb3 NOT listed in dba_pdbs view SQL> alter database begin backup; alter database begin backup * ERROR at line 1: ORA-65011: Pluggable database does not exist. |
---|
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Cause |
Solution |
References |