Mach doch dann bitte ein Rollback, und sag mir ob die Tabelle danach immer noch existiert, oder nicht.
Danke.
Sherlock
Edit:
Oracle:
http://download.oracle.com/docs/cd/B...0/transact.htm
Daraus:
Zitat:
A transaction begins with the first executable
SQL statement. A transaction ends when it is committed or rolled back, either explicitly with a COMMIT or ROLLBACK statement or implicitly when a DDL statement is issued.
MySQL:
http://forge.mysql.com/wiki/MySQL_In...ion_management
Zitat:
Similarly, DDL statements are not transactional, and therefore a transaction is (almost) never started for a DDL statement. But there's a difference between a DDL statement and an administrative statement: the DDL statement always commits the current transaction (if any) before proceeding; the administrative statement doesn't.
Sherlock