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

  1. rem  +---------------------------------------------------------------------+
  2. rem  |  SRW_PUP.SQL -- CREATE PRODUCT AND USER PROFILE TABLES              |
  3. rem  |                                                                     |
  4. rem  |  This script is used by the DBA to create the product_profile and   |
  5. rem  |  user_profile tables in the SYSTEM account.                         |
  6. rem  |  There are two views, product_privs and user_privs, which are what  |
  7. rem  |  a user will see as product_profile and user_profile.  They allow   |
  8. rem  |  the user to see (and in the case of user_profile, modify) only     |
  9. rem  |  their own privileges or profiles.                                  |
  10. rem  +---------------------------------------------------------------------+
  11.  
  12. rem  +---------------------------------------------------------------+
  13. rem  |  If PRODUCT_USER_PROFILE existed, use its values and drop it  |
  14. rem  +---------------------------------------------------------------+
  15.  
  16. drop synonym product_user_profile;
  17.  
  18. create table product_profile as
  19.   select product, userid, attribute, scope, numeric_value, char_value,
  20.   date_value from product_user_profile;
  21.  
  22. drop table product_user_profile;
  23.  
  24. alter table product_profile add (long_value long);
  25.  
  26. rem  +---------------------------------------+
  27. rem  |  Create PRODUCT_PROFILE from scratch  |
  28. rem  +---------------------------------------+
  29.  
  30. create table product_profile
  31. (
  32.   product        char (30) not null,
  33.   userid         char (30),
  34.   attribute      char (240),
  35.   scope          char (240),
  36.   numeric_value  decimal (15,2),
  37.   char_value     char (240),
  38.   date_value     date,
  39.   long_value     long
  40. );
  41.  
  42. rem  +----------------------------------------------------------------------+
  43. rem  |  The next grant is for reverse compatibility with older versions of  |
  44. rem  |  SQL*Plus. It will go away in a future version.                      |
  45. rem  +----------------------------------------------------------------------+
  46.  
  47. grant select on product_profile to public;
  48.  
  49. rem  +----------------------------------------------------------+
  50. rem  |  Create the view PRODUCT_PRIVS and grant access to that  |
  51. rem  +----------------------------------------------------------+
  52.  
  53. create view product_privs as
  54.   select product, userid, attribute, scope,
  55.          numeric_value, char_value, date_value, long_value
  56.   from product_profile
  57.   where userid = 'PUBLIC' or user like userid;
  58.  
  59. grant select on product_privs to public;
  60.  
  61. drop public synonym product_profile;
  62. create public synonym product_profile for system.product_privs;
  63.  
  64. rem  +----------------------------------------------------------------+
  65. rem  |  Create some synonyms for reverse compatibility with SQL*Plus  |
  66. rem  +----------------------------------------------------------------+
  67.  
  68. drop synonym product_user_profile;
  69. create synonym product_user_profile for system.product_profile;
  70.  
  71. drop public synonym product_user_profile;
  72. create public synonym product_user_profile for system.product_privs;
  73.  
  74. rem  +---------------------------------+
  75. rem  |  Create the table USER_PROFILE  |
  76. rem  +---------------------------------+
  77.  
  78. create table user_profile
  79. (
  80.   product        char (30),
  81.   userid         char (30),
  82.   profile        char (240),
  83.   attribute      char (240),
  84.   numeric_value  decimal (15,2),
  85.   char_value     char (240),
  86.   date_value     date,
  87.   long_value     long
  88. );
  89.  
  90. grant select on user_profile to public;
  91.  
  92. rem  +-------------------------------------------------------+
  93. rem  |  Create the view USER_PRIVS and grant access to that  |
  94. rem  +-------------------------------------------------------+
  95.  
  96. create view user_privs as
  97.   select product, userid, profile, attribute,
  98.          numeric_value, char_value, date_value, long_value
  99.   from user_profile
  100.   where userid = user
  101.   with check option;
  102.  
  103. grant select, update, insert, delete on user_privs to public;
  104. create public synonym user_profile for system.user_privs;
  105.  
  106. rem  +-------------------------------------------------------------+
  107. rem  |  Update the one SRW attribute in the PRODUCT_PROFILE table  |
  108. rem  +-------------------------------------------------------------+
  109.  
  110. update system.product_profile set attribute = 'PAGE_LIMIT'
  111.   where product = 'SQL*ReportWriter' and attribute = 'LIMIT';
  112.