Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> GLOBAL TEMPORARY TABLE

GLOBAL TEMPORARY TABLE

From: Nirmalya Das <nirmalya_at_hln.com>
Date: Sun, 22 Oct 2006 18:25:42 -0700
Message-ID: <20061022182542.hnr4scg48o0ck0ss@www.hln.com>


Hi Folks,

I have several tables like the following in our database.

CREATE GLOBAL TEMPORARY TABLE ENTITYCACHE (
  ENTITYNO VARCHAR2(20 BYTE)
)
ON COMMIT DELETE ROWS
NOCACHE; The question I have is, on COMMIT the data is moved to the "online redo logs" and then gets deleted. I don't really care about the data and could not use "NOLOGGING" as well to negate the operation of moving the data to the "online redo logs".

Any suggestions how to use these Temporary Tables but not burden the system of writing it to the "online redo logs".

Thanks,

Nirmalya

--
http://www.freelists.org/webpage/oracle-l
Received on Sun Oct 22 2006 - 20:25:42 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US