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 >
Text File  |  1988-06-26  |  528b  |  29 lines

  1. prompt Dropping demonstration tables.  Please wait.
  2. set termout off
  3. DROP TABLE EMP;
  4. DROP TABLE DEPT;
  5. DROP TABLE BONUS;
  6. DROP TABLE SALGRADE;
  7. DROP TABLE DUMMY;
  8. DROP TABLE PROJ;
  9. DROP TABLE ORD;
  10. DROP TABLE ITEM;
  11. DROP TABLE SEQ;
  12. DROP TABLE PRODUCT;
  13. DROP TABLE CUSTOMER;
  14. DROP TABLE PRICE;
  15.  
  16. DROP VIEW EMP10;
  17. DROP VIEW PROJSTAFF;
  18. DROP VIEW PROJECTS;
  19. DROP VIEW NEW_YORK;
  20. DROP VIEW PAY;
  21. DROP VIEW DEPT_COMP;
  22. DROP VIEW COMPANY_SAL;
  23. DROP VIEW DEPT_SAL;
  24. DROP VIEW EMP20;
  25. DROP VIEW MYSELF;
  26. DROP VIEW SALES;
  27.  
  28. exit
  29.