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

  1. rem  +-------------------------------------------------------------------+
  2. rem  |  SRW_GRNT -- SCRIPT TO ALLOW USERS ACCESS TO SQL*ReportWriter     |
  3. rem  |                                                                   |
  4. rem  |  Used with centralized tables, this script prompts for a user to  |
  5. rem  |  grant access to, and grants select, insert, update and delete    |
  6. rem  |  privileges to that user.                                         |
  7. rem  |  If the SQL*ReportWriter tables are in a local account, this      |
  8. rem  |  script is used to grant access to another user so that they can  |
  9. rem  |  copy reports.                                                    |
  10. rem  +-------------------------------------------------------------------+
  11.  
  12. accept uname char prompt 'Grant access to user: ';
  13.  
  14. set verify off;
  15. grant select, insert, update, delete on srw_field     to  &uname;
  16. grant select, insert, update, delete on srw_fkey      to  &uname;
  17. grant select, insert, update, delete on srw_grant     to  &uname;
  18. grant select, insert, update, delete on srw_group     to  &uname;
  19. grant select, insert, update, delete on srw_param     to  &uname;
  20. grant select, insert, update, delete on srw_query     to  &uname;
  21. grant select, insert, update, delete on srw_report    to  &uname;
  22. grant select, insert, update, delete on srw_ste       to  &uname;
  23. grant select, insert, update, delete on srw_summary   to  &uname;
  24. grant select, insert, update, delete on srw_text      to  &uname;
  25. grant select, insert, update, delete on srw_text_long to  &uname;
  26. grant select on srw_next_appid to &uname;
  27. grant select on srw_granted to &uname;
  28. set verify on;
  29.