$ oerr ora 14452
14452, 00000, "attempt to create, alter or drop an index on temporary table already in use"
// *Cause: An attempt was made to create, alter or drop an index on temporary
// table which is already in use.
// *Action: All the sessions using the session-specific temporary table have
// to truncate table and all the transactions using transaction
// specific temporary table have to end their transactions.
2条答案
按热度按时间elcex8rz1#
在我看来,这个错误很明显:
因此,请确保 * 所有 * 会话都没有使用该表。即使有一个其他会话正在使用该表,您也会收到此错误,并且无法删除它。
hec6srdp2#
在删除表之前,需要在所有会话中截断它。这对我很有效。
这是错误消息的一部分,它解决了首先需要截断的问题。