Applies to: Oracle Server - Enterprise Edition - Version: 9.2.0.5
This problem can occur on any platform.
SymptomsORA-07445 on attempting to move a table from one tablespace to another.
The session is disconnected from the database with ORA-3113.
Public synonym created with same name as the table being moved.
Call stack function :-
qcdlgtd qcsfplob qcsprfro qcspafq qcspqb kkmdrv opiSem opiprs kksald
CauseThis problem is reported in <<Bug 3915647> >.
Abstract: ORA-3113 WHEN USING SYNONYM TO DO ALTER TABLE MOVE TABLESPACE
Fixed In Ver: 10.2 .
The bug is backportable to 9.2 and 10.1
Solution
1. Specify the schema name along with the table name while issuing alter table move command:
SQL> Alter table <schemaname >. <tablename> move tablespace <tablespace name>
(Or)
2. Upgrade to 10.2.0.1
(Or)
3.Avoid using public synonym with same name as table name.
Partager