home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 12.ddi / PUPBLD.SQL < prev    next >
Encoding:
Text File  |  1990-06-26  |  3.4 KB  |  99 lines

  1. rem  +---------------------------------------------------------------------+
  2. rem  |    PUPBLD.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  |    Create the view PRODUCT_PRIVS and grant access to that    |
  44. rem  +----------------------------------------------------------+
  45.  
  46. create view product_privs as
  47.   select product, userid, attribute, scope,
  48.      numeric_value, char_value, date_value, long_value
  49.   from product_profile
  50.   where userid = 'PUBLIC' or user like userid;
  51.  
  52. grant select on product_privs to public;
  53. create public synonym product_profile for system.product_privs;
  54. create synonym product_user_profile for system.product_profile;
  55. create public synonym product_user_profile for system.product_privs;
  56.  
  57. rem  +---------------------------------+
  58. rem  |    Create the table USER_PROFILE  |
  59. rem  +---------------------------------+
  60.  
  61. create table user_profile
  62. (
  63.   product     char (30),
  64.   userid     char (30),
  65.   profile     char (240),
  66.   attribute     char (240),
  67.   numeric_value  decimal (15,2),
  68.   char_value     char (240),
  69.   date_value     date,
  70.   long_value     long
  71. );
  72.  
  73. grant select on user_profile to public;
  74.  
  75. rem  +-------------------------------------------------------+
  76. rem  |    Create the view USER_PRIVS and grant access to that  |
  77. rem  +-------------------------------------------------------+
  78.  
  79. create view user_privs as
  80.   select product, userid, profile, attribute,
  81.      numeric_value, char_value, date_value, long_value
  82.   from user_profile
  83.   where userid = user
  84.   with check option;
  85.  
  86. grant select, update, insert, delete on user_privs to public;
  87. create public synonym user_profile for system.user_privs;
  88.  
  89. rem  +-------------------------------------------------------------+
  90. rem  |    Update the one SRW attribute in the PRODUCT_PROFILE table  |
  91. rem  +-------------------------------------------------------------+
  92.  
  93. update system.product_profile set attribute = 'PAGE_LIMIT'
  94.   where product = 'SQL*ReportWriter' and attribute = 'LIMIT';
  95.  
  96. commit work;
  97.  
  98. exit;
  99.