| 
		
			| ORA 08103 - object no longer exists referring a temporary table [message #683244] | Fri, 18 December 2020 10:07  |  
			| 
				
				|  | NZZ Messages: 1
 Registered: December 2020
 | Junior Member |  |  |  
	| Hi all, I have a problem referring a Global Temporary Table.
 
 I have created MyTempTable (ON COMMIT DELETE ROWS) and a procedure which populate it (MyProc).
 
 Inside AnotherProc I call MyProc:
 
 MyProc(); -- NO ERROR, MyTampTable contains rows
 SELECT on MyTempTable -- NO ERROR
 OPEN MyCursor FOR SELECT... -- ORA-08103
 
 I tried to refer MyTampTable in every way (JOIN, WHERE x IN (...)), but I always get the error.
 
 Any idea?
 |  
	|  |  | 
	|  |