Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: rollback gen
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
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
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
![]() |
![]() |