home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a522 / 6.ddi / SRW_ICEN.SQL < prev    next >
Encoding:
Text File  |  1990-12-05  |  15.3 KB  |  418 lines

  1. rem
  2. rem $Header: srw_icen.sql,v 1.1.11.3 90/05/09 14:02:40 dsimson Exp $srw_icen.sql
  3. rem
  4.  
  5. rem  +---------------------------------------------------------------------+
  6. rem  |  SRW_ICEN.SQL  -- INSTALLATION SCRIPT, CENTRALIZED TABLES           |
  7. rem  |                                                                     |
  8. rem  |  This script installs the SQL*ReportWriter tables in a central      |
  9. rem  |  location, (SYSTEM) and builds views and public synonyms that       |
  10. rem  |  allow reports to be shared, yet guarantee security of the report   |
  11. rem  |  definitions.                                                       |
  12. rem  +---------------------------------------------------------------------+
  13.  
  14. set termout off;
  15. drop index srw_cluster_id;
  16. drop table srw__report;
  17. drop table srw__ste;
  18. drop table srw__query;
  19. drop table srw__fkey;
  20. drop table srw__group;
  21. drop table srw__field;
  22. drop table srw__summary;
  23. drop table srw__text;
  24. drop table srw__text_long;
  25. drop table srw__param;
  26. drop cluster srw_cluster;
  27. set termout on;
  28.  
  29. rem  +--------------------------------------------+
  30. rem  |  SRW_GRANT:  Access grants to other users  |
  31. rem  +--------------------------------------------+
  32.  
  33. set termout off;
  34. drop view srw_grant;
  35. drop public synonym srw_grant;
  36. delete from system.product_access where product = 'SQL*ReportWriter';
  37. set termout on;
  38.  
  39. create view srw_grant as
  40.   select
  41.     product,           /* 'SQL*ReportWriter' */
  42.     owner,             /* Owner */
  43.     numeric_id appid,  /* Report ID */
  44.     grantee            /* User to whom granted access */
  45.   from
  46.     system.product_access
  47.     where product = 'SQL*ReportWriter'
  48.       and owner   = user
  49.   with check option;
  50.  
  51. create public synonym srw_grant for system.srw_grant;
  52.  
  53. rem  +---------------------------------------------------------------+
  54. rem  |  SRW_GRANTED:  View on profile of reports you have access to  |
  55. rem  +---------------------------------------------------------------+
  56.  
  57. set termout off;
  58. drop view srw_granted;
  59. drop public synonym srw_granted;
  60. set termout on;
  61.  
  62. create view srw_granted as
  63.   select
  64.     numeric_id appid,  /* Report ID */
  65.     grantee            /* User to whom granted access */
  66.   from system.product_access
  67.   where product   = 'SQL*ReportWriter'
  68.     and (upper(grantee) = 'PUBLIC' or user like upper(grantee));
  69.  
  70. create public synonym srw_granted for system.srw_granted;
  71.  
  72. rem  +-----------------------------------------+
  73. rem  |  SRW_REPORT:  Report-level information  |
  74. rem  +-----------------------------------------+
  75.  
  76. set termout off;
  77. drop view srw_report;
  78. drop sequence srw_next_appid;
  79. drop public synonym srw_report;
  80. drop public synonym srw_next_appid;
  81. set termout on;
  82.  
  83. create table srw__report
  84. (
  85.   appid             decimal(9) not null,  /* Report ID */
  86.   next_itemid       decimal(9) not null,  /* Next Available Object ID */
  87.   report_name       char(80),             /* Report Name */
  88.   page_height       decimal(3),           /* Page Height */
  89.   page_width        decimal(3),           /* Page Width */
  90.   left_margin       decimal(3),           /* Left Margin */
  91.   right_margin      decimal(3),           /* Right Margin */
  92.   top_margin        decimal(3),           /* Top Margin */
  93.   bottom_margin     decimal(3),           /* Bottom Margin */
  94.   version           decimal(5),           /* SRW Version when created */
  95.   modified_version  decimal(5),           /* SRW Version last modified */
  96.   comments          long,                 /* Comments */
  97.   owner             char(30),             /* Current Owner */
  98.   modifier          char(30),             /* Last Modifier */
  99.   create_date       date,                 /* Date Created */
  100.   modified_date     date,                 /* Date last Modified */
  101.   param_title       char(80),             /* Title for parameter form */
  102.   param_hint        char(80),             /* Hint line for param form */
  103.   param_status      char(50)              /* Status line for param form */
  104. );
  105.  
  106. create unique index srw_report_id on srw__report (appid);
  107. create unique index srw_name_id on srw__report (owner, report_name);
  108.  
  109. create view srw_report as
  110.   select * from system.srw__report where owner = user or appid in
  111.   (select appid from srw_granted)
  112.   with check option;
  113.  
  114. create public synonym srw_report for system.srw_report;
  115.  
  116. create sequence srw_next_appid
  117.   start with 100
  118.   increment by 1
  119.   nomaxvalue nocycle nocache;
  120.  
  121. create public synonym srw_next_appid for system.srw_next_appid;
  122.  
  123. rem  +--------------------------+
  124. rem  |  SRW_STE:  Symbol Table  |
  125. rem  +--------------------------+
  126.  
  127. set termout off;
  128. drop view srw_ste;
  129. drop public synonym srw_ste;
  130. set termout on;
  131.  
  132. create table srw__ste
  133. (
  134.   owner   char(30),             /* Owner */
  135.   appid   decimal(9) not null,  /* Report ID */
  136.   itemid  decimal(9) not null,  /* Object ID */
  137.   type    decimal(2),           /* Object Type */
  138.   name    char(80)              /* Object Name */
  139. );
  140.  
  141. create unique index srw_ste_id on srw__ste (appid, itemid, type);
  142.  
  143. create view srw_ste as
  144.   select * from system.srw__ste where owner = user or appid in
  145.   (select appid from srw_granted)
  146.   with check option;
  147.  
  148. create public synonym srw_ste for system.srw_ste;
  149.  
  150. rem  +---------------------------------+
  151. rem  |  SRW_QUERY:  Select Statements  |
  152. rem  +---------------------------------+ 
  153.  
  154. set termout off;
  155. drop view  srw_query;
  156. drop public synonym srw_query;
  157. set termout on;
  158.  
  159. create table srw__query
  160. (
  161.   owner            char(30),             /* Owner */
  162.   appid            decimal(9) not null,  /* Report ID */
  163.   itemid           decimal(9) not null,  /* Query ID */
  164.   parentid         decimal(9),           /* Parent Query ID */
  165.   matrix_parentid  decimal(9),           /* Parent Query 2 ID */
  166.   query_order      decimal(2),           /* Order on Screen */
  167.   query            long                  /* SELECT Statement Text */
  168. );
  169.  
  170. create unique index srw_query_id on srw__query (appid, itemid);
  171.  
  172. create view srw_query as
  173.   select * from system.srw__query where owner = user or appid in
  174.   (select appid from srw_granted)
  175.   with check option;
  176.  
  177. create public synonym srw_query for system.srw_query;
  178.  
  179. rem  +-----------------------------------------------+
  180. rem  |  SRW_FKEY:  Parent-child query relationships  |
  181. rem  +-----------------------------------------------+
  182.  
  183. set termout off;
  184. drop view srw_fkey;
  185. drop public synonym srw_fkey;
  186. set termout on;
  187.  
  188. create table srw__fkey
  189. (
  190.  owner          char(30),             /* Owner */
  191.  appid          decimal(9) not null,  /* Report ID */
  192.  itemid         decimal(9) not null,  /* Query ID */
  193.  parentid       decimal(9),           /* Parent Query ID */
  194.  local_tlpos    decimal(3),           /* Select List Position in Query */
  195.  foreign_tlpos  decimal(3)            /* Select List Position in Parent */
  196. );
  197.  
  198. create index srw_fkey_id on srw__fkey (appid, itemid, parentid);
  199.  
  200. create view srw_fkey as
  201.   select * from system.srw__fkey where owner = user or appid in
  202.   (select appid from srw_granted)
  203.   with check option;
  204.  
  205. create public synonym srw_fkey for system.srw_fkey;
  206.  
  207. rem  +-------------------------------------------+
  208. rem  |  SRW_GROUP:  Groups and their attributes  |
  209. rem  +-------------------------------------------+
  210.  
  211. set termout off;
  212. drop view srw_group;
  213. drop public synonym srw_group;
  214. set termout on;
  215.  
  216. create table srw__group
  217. (
  218.   owner          char(30),             /* Owner */
  219.   appid          decimal(9) not null,  /* Report ID */
  220.   itemid         decimal(9) not null,  /* Group ID */
  221.   queryid        decimal(9),           /* Associated Query ID */
  222.   page_break     decimal(1),           /* Page Break Style */
  223.   group_order    decimal(2),           /* Order on Screen */
  224.   repetition     decimal(1),           /* Repetition Direction */
  225.   lines_before   decimal(3),           /* Lines Before Group */
  226.   spaces_before  decimal(3),           /* Spaces Before Group */
  227.   inter_row      decimal(3),           /* Spacing Between Records */
  228.   inter_field    decimal(3),           /* Spacing Between Fields */
  229.   field_hilite   decimal(2),           /* Field Highlight Style */
  230.   label_hilite   decimal(2),           /* Label Highlight Style */
  231.   relative_pos   decimal(1),           /* Relative Position Below Parent  */
  232.   fields_across  decimal(3),           /* Maximum Fields Across */
  233.   multi_panel    char(1),              /* Span Multiple Panels or Not */
  234.   matrix_flag    char(1),              /* Matrix Group Indicator */
  235.   locate_labels  decimal(1)            /* Label Placement */
  236. );
  237.  
  238. create unique index srw_group_id on srw__group (appid, itemid);
  239.  
  240. create view srw_group as
  241.   select * from system.srw__group where owner = user or appid in
  242.   (select appid from srw_granted)
  243.   with check option;
  244.  
  245. create public synonym srw_group for system.srw_group;
  246.  
  247. rem  +-------------------------------------------+
  248. rem  |  SRW_FIELD:  Fields and their attributes  |
  249. rem  +-------------------------------------------+
  250.  
  251. set termout off;
  252. drop view srw_field;
  253. drop public synonym srw_field;
  254. set termout on;
  255.  
  256. create table srw__field
  257. (
  258.   owner            char(30),             /* Owner */
  259.   appid            decimal(9) not null,  /* Report ID */
  260.   itemid           decimal(9) not null,  /* Field ID */
  261.   groupid          decimal(9) not null,  /* Owning Group */
  262.   source_query     decimal(9),           /* Query of Source Column */
  263.   target_position  decimal(3),           /* Select List Position in Query */
  264.   compute          char(240),            /* Computing Procedure */
  265.   heading          char(240),            /* Field Label */
  266.   skip             char(1),              /* Skip/Print */
  267.   field_order      decimal(3),           /* Order on Screen */
  268.   format_mask      char(40),             /* Display Format */
  269.   width            decimal(3),           /* Physical Field Width */
  270.   datatype         decimal(1),           /* Datatype of Field */
  271.   operator         decimal(2),           /* Computed Field Function */
  272.   reset_group      decimal(9),           /* Group Where Computation Resets */
  273.   reprint          char(1),              /* Display on All Panels of Group */
  274.   relative_pos     decimal(1),           /* Relative Position to Previous Field */
  275.   lines_before     decimal(3),           /* Lines Before Field */
  276.   spaces_before    decimal(3),           /* Spaces Before Field */
  277.   alignment        decimal(1)            /* Justification of Value within Field */
  278. );
  279.  
  280. create unique index srw_field_id on srw__field (appid, itemid);
  281.  
  282. create view srw_field as
  283.   select * from system.srw__field where owner = user or appid in
  284.   (select appid from srw_granted)
  285.   with check option;
  286.  
  287. create public synonym srw_field for system.srw_field;
  288.  
  289. rem  +------------------------------------------------+
  290. rem  |  SRW_SUMMARY:  Summaries and their attributes  |
  291. rem  +------------------------------------------------+
  292.  
  293. set termout off;
  294. drop view srw_summary;
  295. drop public synonym srw_summary;
  296. set termout on;
  297.  
  298. create table srw__summary
  299. (
  300.   owner        char(30),             /* Owner */
  301.   appid        decimal(9) not null,  /* Report ID */
  302.   itemid       decimal(9) not null,  /* Summary ID */
  303.   fieldid      decimal(9) not null,  /* Field to Summarize */
  304.   sum_order    decimal(3),           /* Order on Screen */
  305.   operator     decimal(2),           /* Summary Operator */
  306.   width        decimal(3),           /* Summary Field Width */
  307.   datatype     decimal(1),           /* Summary Datatype */
  308.   format_mask  char(40),             /* Display Format */
  309.   print_at     decimal(9),           /* Group Where Summary Appears */
  310.   reset_at     decimal(9)            /* Group Where Summary Resets */
  311. );
  312.  
  313. create unique index srw_summary_id on srw__summary (appid, itemid);
  314.  
  315. create view srw_summary as
  316.   select * from system.srw__summary where owner = user or appid in
  317.   (select appid from srw_granted)
  318.   with check option;
  319.  
  320. create public synonym srw_summary for system.srw_summary;
  321.  
  322. rem  +-------------------------------+
  323. rem  |  SRW_TEXT:  Text information  |
  324. rem  +-------------------------------+
  325.  
  326. set termout off;
  327. drop view srw_text;
  328. drop public synonym srw_text;
  329. set termout on;
  330.  
  331. create table srw__text
  332. (
  333.   owner          char(30),             /* Owner */
  334.   appid          decimal(9) not null,  /* Report ID */
  335.   itemid         decimal(9) not null,  /* Owning Object ID */
  336.   type           decimal(2),           /* Text Type */
  337.   dirty          char(1),              /* Edited or Default State */
  338.   relative_pos   decimal(1),           /* Relative Position to Previous Text */
  339.   lines_before   decimal(3),           /* Lines Before Text */
  340.   spaces_before  decimal(3),           /* Spaces Before Text */
  341.   repeat         char(1),              /* Repeat Text on Page Overflow */
  342.   justification  decimal(1),           /* Justification of Text within Area */
  343.   frequency      decimal(9),           /* Appear with which Group (Col Hdng) */
  344.   width          number(3)             /* Width if contains variable fields */
  345. );
  346.  
  347. create unique index srw_text_id on srw__text (appid, itemid, type);
  348.  
  349. create view srw_text as
  350.   select * from system.srw__text  where owner = user or appid in
  351.   (select appid from srw_granted)
  352.   with check option;
  353.  
  354. create public synonym srw_text for system.srw_text;
  355.  
  356. rem  +-------------------------------+
  357. rem  |  SRW_TEXT_LONG:  Text chunks  |
  358. rem  +-------------------------------+
  359.  
  360. set termout off;
  361. drop view srw_text_long;
  362. drop public synonym srw_text_long;
  363. set termout on;
  364.  
  365. create table srw__text_long
  366. (
  367.   owner   char(30),             /* Owner */
  368.   appid   decimal(9) not null,  /* Report ID */
  369.   itemid  decimal(9) not null,  /* Owning Object ID */
  370.   type    decimal(2),           /* Text Type */
  371.   panel   decimal(2),           /* Panel Number */
  372.   text    long                  /* Text Chunk */
  373. );
  374.  
  375. create unique index srw_id_text_long
  376.   on srw__text_long (appid, itemid, type, panel);
  377.  
  378. create view srw_text_long as
  379.   select * from system.srw__text_long where owner = user or appid in
  380.   (select appid from srw_granted)
  381.   with check option;
  382.  
  383. create public synonym srw_text_long for system.srw_text_long;
  384.  
  385. rem  +-----------------------------------------------+
  386. rem  |  SRW_PARAM:  Parameters and their attributes  |
  387. rem  +-----------------------------------------------+
  388.  
  389. set termout off;
  390. drop view srw_param;
  391. drop public synonym srw_param;
  392. set termout on;
  393.  
  394. create table srw__param
  395. (
  396.   owner          char(30),             /* Owner */
  397.   appid          decimal(9) not null,  /* Report ID */
  398.   itemid         decimal(9) not null,  /* Parameter ID */
  399.   param_order    decimal(3),           /* Order on Screen */
  400.   datatype       decimal(1),           /* Parameter Datatype */
  401.   width          decimal(3),           /* Parameter Width */
  402.   default_value  char(240),            /* Initial value */
  403.   label          char(240),            /* Parameter Label */
  404.   param_type     decimal(2),           /* Query or Text Parameter */
  405.   input_mask     char(40),             /* Input Format Mask */
  406.   output_mask    char(40),             /* Output Format Mask */
  407.   skip           char(1)               /* Don't show on parameter form */
  408. );
  409.  
  410. create unique index srw_param_id on srw__param (appid, itemid);
  411.  
  412. create view srw_param as
  413.   select * from system.srw__param where owner = user or appid in
  414.   (select appid from srw_granted)
  415.   with check option;
  416.  
  417. create public synonym srw_param for system.srw_param;
  418.