home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 36.ddi / SRW_PRAC.SQL < prev    next >
Encoding:
Text File  |  1990-12-05  |  929 b   |  23 lines

  1. rem
  2. rem $Header: srw_prac.sql,v 1.1.11.2 90/05/09 14:02:31 dsimson Exp $srw_pup.sql
  3. rem
  4.  
  5. rem  +----------------------------------------------------------------------+
  6. rem  |  SRW_PRAC.SQL -- CREATE PRODUCT_ACCESS                               |
  7. rem  |                                                                      |
  8. rem  |  This script is used by the dba to create the product_access table.  |
  9. rem  |  This table is used by SQL*ReportWriter (and ultimately other        |
  10. rem  |  products) to control access grants by users to their applications.  |
  11. rem  +----------------------------------------------------------------------+
  12.  
  13. create table product_access
  14. (
  15.   product     char (30) not null,
  16.   owner       char (30) not null,
  17.   numeric_id  decimal (15,2),
  18.   char_id     char (30),
  19.   grantee     char (30)
  20. );
  21.  
  22. create index product_access_id on product_access (product, grantee, numeric_id, char_id);
  23.