I faced this error message when I tried to drop a table from my PDB which was opened in read-write mode without any restriction.
SQL> drop table test; |
Oracle Installation guides, Linux Administration tips for DBAs, Performance Tuning tips, Disaster Recovery, RMAN, Dataguard and ORA errors solutions.
No contents from my website can be published anywhere else without my permission. Test every solution before implementing in the production environment.
I faced this error message when I tried to drop a table from my PDB which was opened in read-write mode without any restriction.
SQL> drop table test; |
You should use “including
datafiles” clause while dropping a pluggable database otherwise ORA-65179 would
be returned
SQL> drop pluggable database testpdb; |
Starting 12.2, if you are planning to clone a PDB locally or remotely, you can do that while source PDB is open in read-write mode (hot cloning). In 12.1, if you start your CREATE PLUGGABLE DATABASE command while a transaction is already active in the source PB, you will be returned ORA-65342. Therefore, the better option is to close the source PDB, and then start it as read-only so that no transactions could hinder the cloning process