home *** CD-ROM | disk | FTP | other *** search
- rem +----------------------------------------------------------------------+
- rem | SRW_ILOC.SQL -- INSTALLATION SCRIPT, LOCAL TABLES |
- rem | |
- rem | This script installs the SQL*ReportWriter tables in a specified |
- rem | account. If used on an individual basis, the tables here will be |
- rem | accessed instead of the centralized set. These can also be built |
- rem | centrally and synonyms created -- this will provide centralized |
- rem | storage, but without the security of the views used when the |
- rem | centralized set is built by srw_icen. Finally, if the database |
- rem | being used is V5 or V6 without the Transaction Processing Option |
- rem | this method MUST be used for each user, since centralized tables |
- rem | require row-level locking. |
- rem +----------------------------------------------------------------------+
-
- rem +-----------------------------------------+
- rem | SRW_REPORT: Report-level information |
- rem +-----------------------------------------+
-
- set termout off;
- drop table srw_report;
- drop sequence srw_next_appid;
- drop view srw_next_appid;
- set termout on;
-
- create table srw_report
- (
- appid decimal(9) not null, /* Report ID */
- next_itemid decimal(9) not null, /* Next Available Object ID */
- report_name char(80), /* Report Name */
- page_height decimal(3), /* Page Height */
- page_width decimal(3), /* Page Width */
- left_margin decimal(3), /* Left Margin */
- right_margin decimal(3), /* Right Margin */
- top_margin decimal(3), /* Top Margin */
- bottom_margin decimal(3), /* Bottom Margin */
- version decimal(5), /* SRW Version when created */
- modified_version decimal(5), /* SRW Version last modified */
- comments long, /* Comments */
- owner char(30), /* Current Owner */
- modifier char(30), /* Last Modifier */
- create_date date, /* Date Created */
- modified_date date, /* Date last Modified */
- param_title char(80), /* Title for parameter form */
- param_hint char(80), /* Hint line for param form */
- param_status char(50) /* Status line for param form */
- );
-
- set termout off;
- create sequence srw_next_appid
- start with 100
- increment by 1
- nomaxvalue nocycle nocache;
-
- create view srw_next_appid as
- select nvl(max(appid) + 1, 100) next_appid from srw_report;
- set termout on;
-
- create unique index srw_report_id on srw_report (appid);
- create unique index srw_name_id on srw_report (owner, report_name);
-
- rem +--------------------------------------------+
- rem | SRW_GRANT: Access grants to other users |
- rem +--------------------------------------------+
-
- set termout off;
- drop table srw_grant;
- set termout on;
-
- create table srw_grant
- (
- product char(30), /* 'SQL*ReportWriter' */
- owner char(30), /* Owner */
- appid decimal(9) not null, /* Report ID */
- grantee char(240) /* User to whom granted access */
- );
-
- create index srw_grant_id on srw_grant (appid);
-
- rem +----------------------------------------------------+
- rem | SRW_GRANTED: View of reports you have access to |
- rem +----------------------------------------------------+
-
- set termout off;
- drop view srw_granted;
- set termout on;
-
- create view srw_granted as select appid, grantee from srw_grant;
-
- rem +--------------------------+
- rem | SRW_STE: Symbol Table |
- rem +--------------------------+
-
- set termout off;
- drop table srw_ste;
- set termout on;
-
- create table srw_ste
- (
- owner char(30), /* Owner */
- appid decimal(9) not null, /* Report ID */
- itemid decimal(9) not null, /* Object ID */
- type decimal(2), /* Object Type */
- name char(80) /* Object Name */
- );
-
- create index srw_ste_id on srw_ste (appid, itemid);
-
- rem +---------------------------------+
- rem | SRW_QUERY: Select Statements |
- rem +---------------------------------+
-
- set termout off;
- drop table srw_query;
- set termout on;
-
- create table srw_query
- (
- owner char(30), /* Owner */
- appid decimal(9) not null, /* Report ID */
- itemid decimal(9) not null, /* Query ID */
- parentid decimal(9), /* Parent Query ID */
- matrix_parentid decimal(9), /* Parent Query 2 ID */
- query_order decimal(2), /* Order on Screen */
- query long /* SELECT Statement Text */
- );
-
- create index srw_query_id on srw_query (appid, itemid);
-
- rem +-----------------------------------------------+
- rem | SRW_FKEY: Parent-child query relationships |
- rem +-----------------------------------------------+
-
- set termout off;
- drop table srw_fkey;
- set termout on;
-
- create table srw_fkey
- (
- owner char(30), /* Owner */
- appid decimal(9) not null, /* Report ID */
- itemid decimal(9) not null, /* Query ID */
- parentid decimal(9), /* Parent Query ID */
- local_tlpos decimal(3), /* Select List Position in Query */
- foreign_tlpos decimal(3) /* Select List Position in Parent */
- );
-
- create index srw_fkey_id on srw_fkey (appid, itemid);
-
- rem +-------------------------------------------+
- rem | SRW_GROUP: Groups and their attributes |
- rem +-------------------------------------------+
-
- set termout off;
- drop table srw_group;
- set termout on;
-
- create table srw_group
- (
- owner char(30), /* Owner */
- appid decimal(9) not null, /* Report ID */
- itemid decimal(9) not null, /* Group ID */
- queryid decimal(9), /* Associated Query ID */
- page_break decimal(1), /* Page Break Style */
- group_order decimal(2), /* Order on Screen */
- repetition decimal(1), /* Repetition Direction */
- lines_before decimal(3), /* Lines Before Group */
- spaces_before decimal(3), /* Spaces Before Group */
- inter_row decimal(3), /* Spacing Between Records */
- inter_field decimal(3), /* Spacing Between Fields */
- field_hilite decimal(2), /* Field Highlight Style */
- label_hilite decimal(2), /* Label Highlight Style */
- relative_pos decimal(1), /* Relative Position Below Parent */
- fields_across decimal(3), /* Maximum Fields Across */
- multi_panel char(1), /* Span Multiple Panels or Not */
- matrix_flag char(1), /* Matrix Group Indicator */
- locate_labels decimal(1) /* Label Placement */
- );
-
- create index srw_group_id on srw_group (appid, itemid, queryid);
-
- rem +-------------------------------------------+
- rem | SRW_FIELD: Fields and their attributes |
- rem +-------------------------------------------+
-
- set termout off;
- drop table srw_field;
- set termout on;
-
- create table srw_field
- (
- owner char(30), /* Owner */
- appid decimal(9) not null, /* Report ID */
- itemid decimal(9) not null, /* Field ID */
- groupid decimal(9) not null, /* Owning Group */
- source_query decimal(9), /* Query of Source Column */
- target_position decimal(3), /* Select List Position in Query */
- compute char(240), /* Computing Procedure */
- heading char(240), /* Field Label */
- skip char(1), /* Skip/Print */
- field_order decimal(3), /* Order on Screen */
- format_mask char(40), /* Display Format */
- width decimal(3), /* Physical Field Width */
- datatype decimal(1), /* Datatype of Field */
- operator decimal(2), /* Computed Field Function */
- reset_group decimal(9), /* Group Where Computation Resets */
- reprint char(1), /* Display on All Panels of Group */
- relative_pos decimal(1), /* Relative Position to Previous Field */
- lines_before decimal(3), /* Lines Before Field */
- spaces_before decimal(3), /* Spaces Before Field */
- alignment decimal(1) /* Justification of Value within Field */
- );
-
- create index srw_field_id on srw_field (appid, itemid, groupid);
-
- rem +------------------------------------------------+
- rem | SRW_SUMMARY: Summaries and their attributes |
- rem +------------------------------------------------+
-
- set termout off;
- drop table srw_summary;
- set termout on;
-
- create table srw_summary
- (
- owner char(30), /* Owner */
- appid decimal(9) not null, /* Report ID */
- itemid decimal(9) not null, /* Summary ID */
- fieldid decimal(9) not null, /* Field to Summarize */
- sum_order decimal(3), /* Order on Screen */
- operator decimal(2), /* Summary Operator */
- width decimal(3), /* Summary Field Width */
- datatype decimal(1), /* Summary Datatype */
- format_mask char(40), /* Display Format */
- print_at decimal(9), /* Group Where Summary Appears */
- reset_at decimal(9) /* Group Where Summary Resets */
- );
-
- create index srw_summary_id on srw_summary (appid, itemid, fieldid, print_at);
-
- rem +-------------------------------+
- rem | SRW_TEXT: Text information |
- rem +-------------------------------+
-
- set termout off;
- drop table srw_text;
- set termout on;
-
- create table srw_text
- (
- owner char(30), /* Owner */
- appid decimal(9) not null, /* Report ID */
- itemid decimal(9) not null, /* Owning Object ID */
- type decimal(2), /* Text Type */
- dirty char(1), /* Edited or Default State */
- relative_pos decimal(1), /* Relative Position to Previous Text */
- lines_before decimal(3), /* Lines Before Text */
- spaces_before decimal(3), /* Spaces Before Text */
- repeat char(1), /* Repeat Text on Page Overflow */
- justification decimal(1), /* Justification of Text within Area */
- frequency decimal(9), /* Appear with which Group (Col Hdng) */
- width number(3) /* Width if contains variable fields */
- );
-
- create index srw_text_id on srw_text (appid, itemid, type);
-
- rem +-------------------------------+
- rem | SRW_TEXT_LONG: Text chunks |
- rem +-------------------------------+
-
- set termout off;
- drop table srw_text_long;
- set termout on;
-
- create table srw_text_long
- (
- owner char(30), /* Owner */
- appid decimal(9) not null, /* Report ID */
- itemid decimal(9) not null, /* Owning Object ID */
- type decimal(2), /* Text Type */
- panel decimal(2), /* Panel Number */
- text long /* Text Chunk */
- );
-
- create index srw_text_long_id on srw_text_long (appid, itemid, type);
-
- rem +-----------------------------------------------+
- rem | SRW_PARAM: Parameters and their attributes |
- rem +-----------------------------------------------+
-
- set termout off;
- drop table srw_param;
- set termout on;
-
- create table srw_param
- (
- owner char(30), /* Owner */
- appid decimal(9) not null, /* Report ID */
- itemid decimal(9) not null, /* Parameter ID */
- param_order decimal(3), /* Order on Screen */
- datatype decimal(1), /* Parameter Datatype */
- width decimal(3), /* Parameter Width */
- default_value char(240), /* Initial value */
- label char(240), /* Parameter Label */
- param_type decimal(2), /* Query or Text Parameter */
- input_mask char(40), /* Input Format Mask */
- output_mask char(40), /* Output Format Mask */
- skip char(1) /* Don't show on parameter form */
- );
-
- create index srw_param_id on srw_param (appid, itemid);
-