Oracle 11g ORA-14450: 试图访问已经在使用的事务处理临时表

现场系统报ORA-14450: 试图访问已经在使用的事务处理临时表。 session1: drop table test purge; create global temporary table test (id number) on commit preserve rows; insert into test values(1); session2: alter table test mo

返回顶部