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: How Do I Create a Temporay Table?

Re: How Do I Create a Temporay Table?

From: David Turner <turner_at_more.net>
Date: 1997/03/06
Message-ID: <5fnhog$c2a@news.more.net>#1/1

Check out views.

EX: CREATE OR REPLACE VIEW temp_tbl AS

    SELECT * FROM permanent_tbl;

In article <5fng8m$qa7_at_newsgate.duke.edu>, ghubert_at_acpub.duke.edu says...
>
>I'm running Oracle 7.3 on NT 3.51. I'd like to create a temporary table.
>Is there some way to tell Oracle that the table I'm creating is temporary?
>I could do this in SQL Server 4.2 by prefixing the table name with a pound
>sign (#). If I try to create a table in a temporary segment, I get an error
>saying I'm not allowed to create a permanent object in a temporary
>segment.
>
>I want a temporary table to temporarily hold data from permanent
>tables. It seemed like a temporary table would be faster and
>cut down on disk fragmentation compared to a permanent table.
>Does this make any sense at all?
>
>Thanks for any assistance,
>
>Gene Hubert
>Duke University
>
Received on Thu Mar 06 1997 - 00:00:00 CST

Original text of this message

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