home *** CD-ROM | disk | FTP | other *** search
- rem
- rem $Header: srw_prac.sql,v 1.1.11.2 90/05/09 14:02:31 dsimson Exp $srw_pup.sql
- rem
-
- rem +----------------------------------------------------------------------+
- rem | SRW_PRAC.SQL -- CREATE PRODUCT_ACCESS |
- rem | |
- rem | This script is used by the dba to create the product_access table. |
- rem | This table is used by SQL*ReportWriter (and ultimately other |
- rem | products) to control access grants by users to their applications. |
- rem +----------------------------------------------------------------------+
-
- create table product_access
- (
- product char (30) not null,
- owner char (30) not null,
- numeric_id decimal (15,2),
- char_id char (30),
- grantee char (30)
- );
-
- create index product_access_id on product_access (product, grantee, numeric_id, char_id);
-