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

Home -> Community -> Mailing Lists -> Oracle-L -> RE:

RE:

From: Ehresmann, David <David.Ehresmann_at_ps.net>
Date: Fri, 17 Jan 2003 07:30:10 -0800
Message-ID: <F001.00532E3B.20030117073010@fatcity.com>


If I use Replication such as:

create materialized view EMP
storage (...)
tablespace ...
refresh fast
start with sysdate next sysdate+1
as
select * from emp_at_remote_connect;

  1. I am bringing the new emp data over from the remote_connect database?
  2. This is a materialized view with a local base table. When my user comes in and selects from emp how does he get the new data? Does Oracle join the local base table and emp table? Does it access the view? Or does Oracle actually copy the new data into the emp table from the view and local base table?

thanks

David Ehresmann.

-----Original Message-----
Sent: Friday, January 17, 2003 4:54 AM
To: Multiple recipients of list ORACLE-L

an incremental export does not export just the new rows but ALL the data in the table. It will, however, only export if there has been a change to the table, thus the "incremental"


Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Rachel Carmichael
  INET: wisernet100_at_yahoo.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: Ehresmann, David
  INET: David.Ehresmann_at_ps.net

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Fri Jan 17 2003 - 09:30:10 CST

Original text of this message

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