home *** CD-ROM | disk | FTP | other *** search
- rem +----------------------------------------------------------------+
- rem | SRW_DCEN.SQL -- DROP CENTRAL SQL*ReportWriter TABLES |
- rem | |
- rem | This script is used to drop the centally located tables in a |
- rem | Version 6 with transaction option RDBMS. |
- rem | The reports should be unloaded (dumprep) or the tables |
- rem | exported (exp) before using this script. |
- rem +----------------------------------------------------------------+
-
- delete from system.product_access where product = 'SQL*ReportWriter';
-
- drop table srw__report;
- 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_grant;
- drop view srw_granted;
- drop view srw_report;
- drop view srw_ste;
- drop view srw_query;
- drop view srw_fkey;
- drop view srw_group;
- drop view srw_field;
- drop view srw_summary;
- drop view srw_text;
- drop view srw_text_long;
- drop view srw_param;
-
- drop sequence srw_next_appid;
-
- drop public synonym srw_grant;
- drop public synonym srw_granted;
- drop public synonym srw_report;
- drop public synonym srw_next_appid;
- drop public synonym srw_ste;
- drop public synonym srw_query;
- drop public synonym srw_fkey;
- drop public synonym srw_group;
- drop public synonym srw_field;
- drop public synonym srw_summary;
- drop public synonym srw_text;
- drop public synonym srw_text_long;
- drop public synonym srw_param;
-