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

Home -> Community -> Usenet -> c.d.o.server -> Re: Tables created to hold temporay data. Good or Bad?

Re: Tables created to hold temporay data. Good or Bad?

From: <sybrandb_at_yahoo.com>
Date: 21 Mar 2006 03:51:02 -0800
Message-ID: <1142941862.284708.8510@t31g2000cwb.googlegroups.com>


Apparently the developer only knew T-SQL and didn't know PL/SQL. Temporary tables are usually a big nono. They are a likely common cause for contention, especially if multiple users are running the same procedure, and there is only one temporary table. If the problem gets even worse when those temporary tables are created and dropped in the procedure.
If you really think you need temporary tables (in Oracle you usually don't), you should create a GLOBALLY TEMPORARY table instead.

-- 
Sybrand Bakker
Senior Oracle DBA
Received on Tue Mar 21 2006 - 05:51:02 CST

Original text of this message

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