home *** CD-ROM | disk | FTP | other *** search
- rem +----------------------------------------------------------------+
- rem | SRW_DLOC.SQL -- DROP LOCAL SQL*ReportWriter TABLES |
- rem | |
- rem | This script is used to deinstall a SQL*ReportWriter user. |
- rem | The reports should be unloaded via dumprep before dropping |
- rem | the tables, so that a report can be recovered if needed. |
- rem | This script can also be used when the database is upgraded |
- rem | with the transaction proccessing option and the reports are |
- rem | transferred (via dumprep and loadrep) to the central tables. |
- rem +----------------------------------------------------------------+
-
- drop table srw_report;
- drop table srw_grant;
- drop table srw_ste;
- drop table srw_query;
- drop table srw_fkey;
- drop table srw_group;
- drop table srw_field;
- drop table srw_summary;
- drop table srw_text;
- drop table srw_text_long;
- drop table srw_param;
-
- drop view srw_granted;
- drop sequence srw_next_appid;
- drop view srw_next_appid;
-