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: Undo after drop table...

Re: Undo after drop table...

From: gazzag <gareth_at_jamms.org>
Date: 25 Nov 2005 06:28:23 -0800
Message-ID: <1132928903.457015.158170@g47g2000cwa.googlegroups.com>


And, as a point of order, a commit is irrelevant after a drop table.

Rollback and commit statements affect DML, not DDL.

It's a bit of a bugbear of mine; I get so many scripts from developers in the form:

CREATE TABLE <table_name> (
...
...

);

COMMIT; CREATE TABLE <table_name> (
...
...

);

COMMIT; etc. etc. It drives me mad! Received on Fri Nov 25 2005 - 08:28:23 CST

Original text of this message

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