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 -> DROP TABLE always takes long time.

DROP TABLE always takes long time.

From: Chuck Hamilton <chuckh_at_dvol.com>
Date: 1998/01/13
Message-ID: <34be99d5.12781992@news.dvol.com>#1/1

What would cause all DROP TABLE commands, even on the simplest of tables, those with no indexes, rows, or constraints, to take an inordinately long time?

For example:

	CREATE TABLE mytable (
		name	VARCHAR2(10),
		qty	NUMBER(9,0)
	);

takes about 2 seconds. But

        DROP TABLE MYTABLE; takes 3.5 minutes;

There is nobody else accessing the take so it shoudn't be a locking problem.

The session wait event is usually RDBMS IPC REPLY.

--
Chuck Hamilton
chuckh_at_dvol.com

Never share a foxhole with anyone braver than yourself!
Received on Tue Jan 13 1998 - 00:00:00 CST

Original text of this message

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