home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 36.ddi / SRW_LMT.SQL < prev    next >
Encoding:
Text File  |  1990-05-08  |  1.3 KB  |  28 lines

  1. rem  +------------------------------------------------------------------+
  2. rem  |  SRW_LMT.SQL -- SET PAGE LIMIT FOR A GIVEN USER                  |
  3. rem  |                                                                  |
  4. rem  |  This script is used by the DBA to set a page limit for a user.  |
  5. rem  |  The value is written to the product_profile table, which can    |
  6. rem  |  be created by the srw_pup.sql script if it does not already     |
  7. rem  |  exist.  The user name may be wildcarded, however care should    |
  8. rem  |  be taken to avoid having more than one limit applicable to a    |
  9. rem  |  particular user.  To create the default limit, use PUBLIC as    |
  10. rem  |  the username, rather than % or _DEFAULT_ (from SRW 1.0)         |
  11. rem  +------------------------------------------------------------------+
  12.  
  13. accept usrnm char prompt 'Add limit for user: ';
  14.  
  15. accept mxpgs number prompt 'Enter page limit for &usrnm (0 = no limit): ';
  16.  
  17. set verify off;
  18.  
  19. delete from system.product_profile
  20.   where product       = 'SQL*ReportWriter'
  21.     and attribute     = 'PAGE_LIMIT'
  22.     and upper(userid) = upper('&usrnm');
  23.  
  24. insert into system.product_profile (product, userid, attribute, numeric_value)
  25.  values ('SQL*ReportWriter', upper('&usrnm'), 'PAGE_LIMIT', &mxpgs);
  26.  
  27. set verify on;
  28.