home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a524 / 27.ddi / demo / demodrop.sql < prev   
Encoding:
Text File  |  1991-03-04  |  609 b   |  26 lines

  1. rem
  2. 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 
  3. rem
  4. set termout off
  5. rem host write sys$output "Dropping demonstration tables.  Please wait."
  6. host echo "Dropping demonstration tables.  Please wait."
  7. DROP TABLE EMP;
  8. DROP TABLE DEPT;
  9. DROP TABLE BONUS;
  10. DROP TABLE SALGRADE;
  11. DROP TABLE DUMMY;
  12. DROP TABLE PROJ;
  13.  
  14. DROP VIEW EMP10;
  15. DROP VIEW PROJSTAFF;
  16. DROP VIEW PROJECTS;
  17. DROP VIEW NEW_YORK;
  18. DROP VIEW PAY;
  19. DROP VIEW DEPT_COMP;
  20. DROP VIEW COMPANY_SAL;
  21. DROP VIEW DEPT_SAL;
  22. DROP VIEW EMP20;
  23. DROP VIEW MYSELF;
  24.  
  25. EXIT;
  26.