HI,
CREATE GLOBAL TEMPORARY TABLE TEST
(
COL VARCHAR2(4 BYTE)
)
ON COMMIT PRESERVE ROWS
RESULT_CACHE (MODE DEFAULT)
NOCACHE;
this table is used in many procedures.Hence while i tried to add a column to this table.i got the below error
Error at line 2
ORA-14450: attempt to access a transactional temp table already in use
Could anyone please tell be how i can over come this?I'm using oracle 11g
Regards
Aswathy