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: Separating data, index objects

Re: Separating data, index objects

From: DA Morgan <damorgan_at_psoug.org>
Date: Sat, 16 Jul 2005 12:57:05 -0700
Message-ID: <1121543830.872468@yasure>


Joel Garry wrote:

> Unless you are saying it does this at random
> times in the middle of a full table scan, which I would highly doubt.
>
> jg

I'm not sure I'd use the word "random" but if you doubt it try this on a single user system with only a single SQL*Plus connection.

SELECT dbms_flashback.get_system_change_number FROM dual;

then immediately:

SELECT dbms_flashback.get_system_change_number FROM dual;

and again immediately:

SELECT dbms_flashback.get_system_change_number FROM dual;

likely consecutive numbers.

Now lets simulate a large full table scan.

SELECT dbms_flashback.get_system_change_number FROM dual;

now wait 60 seconds

SELECT dbms_flashback.get_system_change_number FROM dual;

A lot of SCNs were used ... and they were doing something ... somewhere.

-- 
Daniel A. Morgan
http://www.psoug.org
damorgan_at_x.washington.edu
(replace x with u to respond)
Received on Sat Jul 16 2005 - 14:57:05 CDT

Original text of this message

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