home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.2 (Developer)
/
NS_dev_3.2.iso
/
NextDeveloper
/
Examples
/
DatabaseKit
/
Models
/
OracleDemoScripts
/
demodrop.sql
< prev
next >
Wrap
Text File
|
1988-06-26
|
528b
|
29 lines
prompt Dropping demonstration tables. Please wait.
set termout off
DROP TABLE EMP;
DROP TABLE DEPT;
DROP TABLE BONUS;
DROP TABLE SALGRADE;
DROP TABLE DUMMY;
DROP TABLE PROJ;
DROP TABLE ORD;
DROP TABLE ITEM;
DROP TABLE SEQ;
DROP TABLE PRODUCT;
DROP TABLE CUSTOMER;
DROP TABLE PRICE;
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;
DROP VIEW SALES;
exit