home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / DB / UTIL72 / CATNOSVM.SQL < prev    next >
Encoding:
Text File  |  1995-05-09  |  1.2 KB  |  39 lines

  1. rem 
  2. rem $Header: catnosvm.sql 7020100.1 94/09/23 22:14:13 cli Generic<base> $ 
  3. rem 
  4. Rem  Copyright (c) 1991 by Oracle Corporation 
  5. Rem    NAME
  6. Rem      catnosvm.sql - Remove the objects catsvrmg.sql creates
  7. Rem    DESCRIPTION
  8. Rem      
  9. Rem    RETURNS
  10. Rem 
  11. Rem    NOTES
  12. Rem      This script expects to already be connected
  13. Rem    MODIFIED   (MM/DD/YY)
  14. Rem     barthur    01/23/94 -  Remove the sm$security items we no longer need 
  15. Rem     barthur    12/30/93 -  Add new views and table for improvements to secu
  16. Rem     ameyer     10/22/93 -  Synced with catsvrmg.sql and fixed up. 
  17. Rem     ameyer     10/12/93 -  Added sm$version. 
  18. Rem     barthur    09/23/93 -  Add sys. to the names of views and tables 
  19. Rem     barthur    07/30/93 -  Add drop to correspond to changes in catsvrmg.sq
  20. Rem     barthur    05/07/93 -  Creation 
  21.  
  22. REM Drop the views and tables created by the Server Manager installation
  23. REM script catsvrmg.sql
  24. REM This script should be run by a user who can delete objects owned by sys
  25. REM (Usually SYS or INTERNAL)
  26.  
  27. drop view sys.sm_$version;
  28. drop public synonym sm$version;
  29.  
  30. drop view sys.sm$ts_avail;
  31.  
  32. drop view sys.sm$ts_used;
  33.  
  34. drop view sys.sm$ts_free;
  35.  
  36. drop view sys.sm$audit_config;
  37.  
  38. drop view sys.sm$integrity_cons;
  39.