文档解释
ORA-12354: secondary object being dropped
Cause: You tried to access a object (for example, a table or view) on a secondary database that was in the process of being dropped.
Action: Repeat the operation. If you receive this message again, try to access the object from the secondary database. If you receive an internal error or a trace file, contact Oracle WorldWide Technical Support.
ORA-12354错误表示由于试图移除或修改某些对象的存在,所以不能进行操作。 当发生这种错误时,如果您尝试移除或修改包括子对象的任何数据库对象(如表、视图或索引),则会出现ORA-12354错误。
官方解释
ORA-12354涵盖以下原因:当您尝试删除或修改任何带有子对象的数据库对象时,数据库会引发ORA-12354错误。例如,如果你想删除一个表,但它带有其他看不见的表,那么它将触发该ORA-12354错误消息。
常见案例
ORA-12354的一个普遍的情况是,当尝试移除或修改同时连接到父对象的共享池或其他子对象时,可能会发生这种错误。
正常处理方法
1. 使用DROP CASCADE语句,以删除被依赖的数据库子对象,其中包括共享池,或者,
2. 尝试将父对象从共享池中移入局部池,然后再尝试移除这个父对象。
3. 使用ALTER SESSION DISABLE PARALLEL DDL句子,来禁用并行语句。