home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.2 (Developer)
/
NS_dev_3.2.iso
/
NextDeveloper
/
Examples
/
DatabaseKit
/
Models
/
OracleDemoScripts
/
PartIdemodrop.sql
< prev
Wrap
Text File
|
1991-02-18
|
609b
|
26 lines
rem
rem $Header: demodrop.sql.0,v 50117.5 89/09/05 15:51:42 dporter Exp $ base sqlplus sqlplus/demo demodrop.sql 0 Copyr (c) 1988 Oracle Corporation
rem
set termout off
rem host write sys$output "Dropping demonstration tables. Please wait."
host echo "Dropping demonstration tables. Please wait."
DROP TABLE EMP;
DROP TABLE DEPT;
DROP TABLE BONUS;
DROP TABLE SALGRADE;
DROP TABLE DUMMY;
DROP TABLE PROJ;
DROP VIEW EMP10;
DROP VIEW PROJSTAFF;
DROP VIEW PROJECTS;
DROP VIEW NEW_YORK;
DROP VIEW PAY;
DROP VIEW DEPT_COMP;
DROP VIEW COMPANY_SAL;
DROP VIEW DEPT_SAL;
DROP VIEW EMP20;
DROP VIEW MYSELF;
EXIT;