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

  1. rem  +----------------------------------------------------------------------+
  2. rem  |  SRW_ILOC.SQL  -- INSTALLATION SCRIPT, LOCAL TABLES                  |
  3. rem  |                                                                      |
  4. rem  |  This script installs the SQL*ReportWriter tables in a specified     |
  5. rem  |  account.  If used on an individual basis, the tables here will be   |
  6. rem  |  accessed instead of the centralized set.  These can also be built   |
  7. rem  |  centrally and synonyms created -- this will provide centralized     |
  8. rem  |  storage, but without the security of the views used when the        |
  9. rem  |  centralized set is built by srw_icen.  Finally, if the database     |
  10. rem  |  being used is V5 or V6 without the Transaction Processing Option    |
  11. rem  |  this method MUST be used for each user, since centralized tables    |
  12. rem  |  require row-level locking.                                          |
  13. rem  +----------------------------------------------------------------------+
  14.  
  15. rem  +-----------------------------------------+
  16. rem  |  SRW_REPORT:  Report-level information  |
  17. rem  +-----------------------------------------+
  18.  
  19. set termout off;
  20. drop table srw_report;
  21. drop sequence srw_next_appid;
  22. drop view srw_next_appid;
  23. set termout on;
  24.  
  25. create table srw_report
  26. (
  27.   appid             decimal(9) not null,  /* Report ID */
  28.   next_itemid       decimal(9) not null,  /* Next Available Object ID */
  29.   report_name       char(80),             /* Report Name */
  30.   page_height       decimal(3),           /* Page Height */
  31.   page_width        decimal(3),           /* Page Width */
  32.   left_margin       decimal(3),           /* Left Margin */
  33.   right_margin      decimal(3),           /* Right Margin */
  34.   top_margin        decimal(3),           /* Top Margin */
  35.   bottom_margin     decimal(3),           /* Bottom Margin */
  36.   version           decimal(5),           /* SRW Version when created */
  37.   modified_version  decimal(5),           /* SRW Version last modified */
  38.   comments          long,                 /* Comments */
  39.   owner             char(30),             /* Current Owner */
  40.   modifier          char(30),             /* Last Modifier */
  41.   create_date       date,                 /* Date Created */
  42.   modified_date     date,                 /* Date last Modified */
  43.   param_title       char(80),             /* Title for parameter form */
  44.   param_hint        char(80),             /* Hint line for param form */
  45.   param_status      char(50)              /* Status line for param form */
  46. );
  47.  
  48. set termout off;
  49. create sequence srw_next_appid
  50.   start with 100
  51.   increment by 1
  52.   nomaxvalue nocycle nocache;
  53.  
  54. create view srw_next_appid as
  55.   select nvl(max(appid) + 1, 100) next_appid from srw_report;
  56. set termout on;
  57.  
  58. create unique index srw_report_id on srw_report (appid);
  59. create unique index srw_name_id on srw_report (owner, report_name);
  60.  
  61. rem  +--------------------------------------------+
  62. rem  |  SRW_GRANT:  Access grants to other users  |
  63. rem  +--------------------------------------------+
  64.  
  65. set termout off;
  66. drop table srw_grant;
  67. set termout on;
  68.  
  69. create table srw_grant
  70. (
  71.   product    char(30),             /* 'SQL*ReportWriter' */
  72.   owner      char(30),             /* Owner */
  73.   appid      decimal(9) not null,  /* Report ID */
  74.   grantee    char(240)             /* User to whom granted access */
  75. );
  76.  
  77. create index srw_grant_id on srw_grant (appid);
  78.  
  79. rem  +----------------------------------------------------+
  80. rem  |  SRW_GRANTED:  View of reports you have access to  |
  81. rem  +----------------------------------------------------+
  82.  
  83. set termout off;
  84. drop view srw_granted;
  85. set termout on;
  86.  
  87. create view srw_granted as select appid, grantee from srw_grant;
  88.  
  89. rem  +--------------------------+
  90. rem  |  SRW_STE:  Symbol Table  |
  91. rem  +--------------------------+
  92.  
  93. set termout off;
  94. drop table srw_ste;
  95. set termout on;
  96.  
  97. create table srw_ste
  98. (
  99.   owner   char(30),             /* Owner */
  100.   appid   decimal(9) not null,  /* Report ID */
  101.   itemid  decimal(9) not null,  /* Object ID */
  102.   type    decimal(2),           /* Object Type */
  103.   name    char(80)              /* Object Name */
  104. );
  105.  
  106. create index srw_ste_id on srw_ste (appid, itemid);
  107.  
  108. rem  +---------------------------------+
  109. rem  |  SRW_QUERY:  Select Statements  |
  110. rem  +---------------------------------+
  111.  
  112. set termout off;
  113. drop table srw_query;
  114. set termout on;
  115.  
  116. create table srw_query
  117. (
  118.   owner            char(30),             /* Owner */
  119.   appid            decimal(9) not null,  /* Report ID */
  120.   itemid           decimal(9) not null,  /* Query ID */
  121.   parentid         decimal(9),           /* Parent Query ID */
  122.   matrix_parentid  decimal(9),           /* Parent Query 2 ID */
  123.   query_order      decimal(2),           /* Order on Screen */
  124.   query            long                  /* SELECT Statement Text */
  125. );
  126.  
  127. create index srw_query_id on srw_query (appid, itemid);
  128.  
  129. rem  +-----------------------------------------------+
  130. rem  |  SRW_FKEY:  Parent-child query relationships  |
  131. rem  +-----------------------------------------------+
  132.  
  133. set termout off;
  134. drop table srw_fkey;
  135. set termout on;
  136.  
  137. create table srw_fkey
  138. (
  139.  owner          char(30),             /* Owner */
  140.  appid          decimal(9) not null,  /* Report ID */
  141.  itemid         decimal(9) not null,  /* Query ID */
  142.  parentid       decimal(9),           /* Parent Query ID */
  143.  local_tlpos    decimal(3),           /* Select List Position in Query */
  144.  foreign_tlpos  decimal(3)            /* Select List Position in Parent */
  145. );
  146.  
  147. create index srw_fkey_id on srw_fkey (appid, itemid);
  148.  
  149. rem  +-------------------------------------------+
  150. rem  |  SRW_GROUP:  Groups and their attributes  |
  151. rem  +-------------------------------------------+
  152.  
  153. set termout off;
  154. drop table srw_group;
  155. set termout on;
  156.  
  157. create table srw_group
  158. (
  159.   owner          char(30),             /* Owner */
  160.   appid          decimal(9) not null,  /* Report ID */
  161.   itemid         decimal(9) not null,  /* Group ID */
  162.   queryid        decimal(9),           /* Associated Query ID */
  163.   page_break     decimal(1),           /* Page Break Style */
  164.   group_order    decimal(2),           /* Order on Screen */
  165.   repetition     decimal(1),           /* Repetition Direction */
  166.   lines_before   decimal(3),           /* Lines Before Group */
  167.   spaces_before  decimal(3),           /* Spaces Before Group */
  168.   inter_row      decimal(3),           /* Spacing Between Records */
  169.   inter_field    decimal(3),           /* Spacing Between Fields */
  170.   field_hilite   decimal(2),           /* Field Highlight Style */
  171.   label_hilite   decimal(2),           /* Label Highlight Style */
  172.   relative_pos   decimal(1),           /* Relative Position Below Parent  */
  173.   fields_across  decimal(3),           /* Maximum Fields Across */
  174.   multi_panel    char(1),              /* Span Multiple Panels or Not */
  175.   matrix_flag    char(1),              /* Matrix Group Indicator */
  176.   locate_labels  decimal(1)            /* Label Placement */
  177. );
  178.  
  179. create index srw_group_id on srw_group (appid, itemid, queryid);
  180.  
  181. rem  +-------------------------------------------+
  182. rem  |  SRW_FIELD:  Fields and their attributes  |
  183. rem  +-------------------------------------------+
  184.  
  185. set termout off;
  186. drop table srw_field;
  187. set termout on;
  188.  
  189. create table srw_field
  190. (
  191.   owner            char(30),             /* Owner */
  192.   appid            decimal(9) not null,  /* Report ID */
  193.   itemid           decimal(9) not null,  /* Field ID */
  194.   groupid          decimal(9) not null,  /* Owning Group */
  195.   source_query     decimal(9),           /* Query of Source Column */
  196.   target_position  decimal(3),           /* Select List Position in Query */
  197.   compute          char(240),            /* Computing Procedure */
  198.   heading          char(240),            /* Field Label */
  199.   skip             char(1),              /* Skip/Print */
  200.   field_order      decimal(3),           /* Order on Screen */
  201.   format_mask      char(40),             /* Display Format */
  202.   width            decimal(3),           /* Physical Field Width */
  203.   datatype         decimal(1),           /* Datatype of Field */
  204.   operator         decimal(2),           /* Computed Field Function */
  205.   reset_group      decimal(9),           /* Group Where Computation Resets */
  206.   reprint          char(1),              /* Display on All Panels of Group */
  207.   relative_pos     decimal(1),           /* Relative Position to Previous Field */
  208.   lines_before     decimal(3),           /* Lines Before Field */
  209.   spaces_before    decimal(3),           /* Spaces Before Field */
  210.   alignment        decimal(1)            /* Justification of Value within Field */
  211. );
  212.  
  213. create index srw_field_id on srw_field (appid, itemid, groupid);
  214.  
  215. rem  +------------------------------------------------+
  216. rem  |  SRW_SUMMARY:  Summaries and their attributes  |
  217. rem  +------------------------------------------------+
  218.  
  219. set termout off;
  220. drop table srw_summary;
  221. set termout on;
  222.  
  223. create table srw_summary
  224. (
  225.   owner        char(30),             /* Owner */
  226.   appid        decimal(9) not null,  /* Report ID */
  227.   itemid       decimal(9) not null,  /* Summary ID */
  228.   fieldid      decimal(9) not null,  /* Field to Summarize */
  229.   sum_order    decimal(3),           /* Order on Screen */
  230.   operator     decimal(2),           /* Summary Operator */
  231.   width        decimal(3),           /* Summary Field Width */
  232.   datatype     decimal(1),           /* Summary Datatype */
  233.   format_mask  char(40),             /* Display Format */
  234.   print_at     decimal(9),           /* Group Where Summary Appears */
  235.   reset_at     decimal(9)            /* Group Where Summary Resets */
  236. );
  237.  
  238. create index srw_summary_id on srw_summary (appid, itemid, fieldid, print_at);
  239.  
  240. rem  +-------------------------------+
  241. rem  |  SRW_TEXT:  Text information  |
  242. rem  +-------------------------------+
  243.  
  244. set termout off;
  245. drop table srw_text;
  246. set termout on;
  247.  
  248. create table srw_text
  249. (
  250.   owner          char(30),             /* Owner */
  251.   appid          decimal(9) not null,  /* Report ID */
  252.   itemid         decimal(9) not null,  /* Owning Object ID */
  253.   type           decimal(2),           /* Text Type */
  254.   dirty          char(1),              /* Edited or Default State */
  255.   relative_pos   decimal(1),           /* Relative Position to Previous Text */
  256.   lines_before   decimal(3),           /* Lines Before Text */
  257.   spaces_before  decimal(3),           /* Spaces Before Text */
  258.   repeat         char(1),              /* Repeat Text on Page Overflow */
  259.   justification  decimal(1),           /* Justification of Text within Area */
  260.   frequency      decimal(9),           /* Appear with which Group (Col Hdng) */
  261.   width          number(3)             /* Width if contains variable fields */
  262. );
  263.  
  264. create index srw_text_id on srw_text (appid, itemid, type);
  265.  
  266. rem  +-------------------------------+
  267. rem  |  SRW_TEXT_LONG:  Text chunks  |
  268. rem  +-------------------------------+
  269.  
  270. set termout off;
  271. drop table srw_text_long;
  272. set termout on;
  273.  
  274. create table srw_text_long
  275. (
  276.   owner   char(30),             /* Owner */
  277.   appid   decimal(9) not null,  /* Report ID */
  278.   itemid  decimal(9) not null,  /* Owning Object ID */
  279.   type    decimal(2),           /* Text Type */
  280.   panel   decimal(2),           /* Panel Number */
  281.   text    long                  /* Text Chunk */
  282. );
  283.  
  284. create index srw_text_long_id on srw_text_long (appid, itemid, type);
  285.  
  286. rem  +-----------------------------------------------+
  287. rem  |  SRW_PARAM:  Parameters and their attributes  |
  288. rem  +-----------------------------------------------+
  289.  
  290. set termout off;
  291. drop table srw_param;
  292. set termout on;
  293.  
  294. create table srw_param
  295. (
  296.   owner          char(30),             /* Owner */
  297.   appid          decimal(9) not null,  /* Report ID */
  298.   itemid         decimal(9) not null,  /* Parameter ID */
  299.   param_order    decimal(3),           /* Order on Screen */
  300.   datatype       decimal(1),           /* Parameter Datatype */
  301.   width          decimal(3),           /* Parameter Width */
  302.   default_value  char(240),            /* Initial value */
  303.   label          char(240),            /* Parameter Label */
  304.   param_type     decimal(2),           /* Query or Text Parameter */
  305.   input_mask     char(40),             /* Input Format Mask */
  306.   output_mask    char(40),             /* Output Format Mask */
  307.   skip           char(1)               /* Don't show on parameter form */
  308. );
  309.  
  310. create index srw_param_id on srw_param (appid, itemid);
  311.