-- -- $Header: /plus/v4/spam/precious/files/ACTIVE/demodrop.sql,v 1.1 1995/12/19 02:45:20 cjones Exp $ -- Copyright (c) Oracle Corporation 1988, 1993. All Rights Reserved. -- -- -- This script drops the SQL*Plus demonstration tables. -- -- It should be STARTed by each owner of the tables. set termout on prompt Dropping demonstration tables. Please wait. set termout off DROP TABLE EMP; DROP TABLE DEPT; DROP TABLE BONUS; DROP TABLE SALGRADE; DROP TABLE DUMMY; EXIT;