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: rollback gen

RE: rollback gen

From: Deshpande, Kirti <kirti.deshpande_at_verizon.com>
Date: Thu, 12 Jul 2001 10:56:05 -0700
Message-ID: <F001.00348FDA.20010712110026@fatcity.com>

Well... . DDL will generate small amount of rollback for changes in the data dictionary...
See this:
SQL> select usn, writes from v$rollstat;

         USN  WRITES
       ---------- ----------
                0        716
              2       1472

SQL> get f1.sql

    1 create table mytable (mycol number)     2 storage(initial 1M next 1M maxextents 10 pctincrease 0 )     3* tablespace users
SQL> /
Table created.
SQL> select usn, writes from v$rollstat;

         USN     WRITES
       ---------- ----------
                0        716
                2       3273

SQL>drop table mytable;
Table dropped.
SQL>select usn, writes from v$rollstat;
         USN     WRITES
       ---------- ----------
                0        716
                2       3781

Regards,

> -----Original Message-----
> From: Ramasamy, Baskar [SMTP:Baskar.Ramasamy_at_calanais.com]
> Sent: Thursday, July 12, 2001 9:56 AM
> To: Multiple recipients of list ORACLE-L
> Subject: RE: rollback gen
>
> no
>
> -----Original Message-----
> Sent: 12 July 2001 14:51
> To: Multiple recipients of list ORACLE-L
>
>
> will a ddl statement generate rollback.
>
> eg: create table or alter table or drop table ...
>
> thnx in adv.
>
> svs
>
> __________________________________________________
> Do You Yahoo!?
> Get personalized email addresses from Yahoo! Mail
> http://personal.mail.yahoo.com/
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
>

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Deshpande, Kirti
  INET: kirti.deshpande_at_verizon.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
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 Thu Jul 12 2001 - 12:56:05 CDT

Original text of this message

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