home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 36.ddi / SRW_DLOC.SQL < prev    next >
Encoding:
Text File  |  1990-05-08  |  1.0 KB  |  27 lines

  1. rem  +----------------------------------------------------------------+
  2. rem  |  SRW_DLOC.SQL -- DROP LOCAL SQL*ReportWriter TABLES            |
  3. rem  |                                                                |
  4. rem  |  This script is used to deinstall a SQL*ReportWriter user.     |
  5. rem  |  The reports should be unloaded via dumprep before dropping    |
  6. rem  |  the tables, so that a report can be recovered if needed.      |
  7. rem  |  This script can also be used when the database is upgraded    |
  8. rem  |  with the transaction proccessing option and the reports are   |
  9. rem  |  transferred (via dumprep and loadrep) to the central tables.  |
  10. rem  +----------------------------------------------------------------+
  11.  
  12. drop table srw_report;
  13. drop table srw_grant;
  14. drop table srw_ste;
  15. drop table srw_query;
  16. drop table srw_fkey;
  17. drop table srw_group;
  18. drop table srw_field;
  19. drop table srw_summary;
  20. drop table srw_text;
  21. drop table srw_text_long;
  22. drop table srw_param;
  23.  
  24. drop view srw_granted;
  25. drop sequence srw_next_appid;
  26. drop view srw_next_appid;
  27.