home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a523 / 22.ddi / MONITOR.SQL < prev    next >
Encoding:
Text File  |  1988-12-15  |  1.8 KB  |  51 lines

  1. Rem Copyright (c) 1988 by Oracle Corporation
  2. Rem NAME
  3. Rem   monitor.sql
  4. Rem FUNCTION
  5. Rem   Grant public access to all views used by the SQLDBA monitor command.
  6. Rem NOTES
  7. Rem   This file must be run while logged-in as SYS.
  8. Rem   Catalog.sql must have been run before this file is run.
  9. Rem
  10. Rem   By default, only users with dba privilege may access the SQLDBA monitor 
  11. Rem   screens.  The execution of this file grants all users access to the 
  12. Rem   screens.  This file may be edited to provide access to a subset of
  13. Rem   your users to a subset of the monitor screens.  See the DBA guide
  14. Rem   for more information.
  15. Rem
  16. Rem MODIFIED
  17. Rem   Bulchan    10/21/88 - Add views for mon file and mon rollback
  18. Rem   Bulchan    10/03/88 - Add v$parameter
  19. Rem   Bulchan      07/22/88 - Add v_$sga 
  20. Rem   Mendelsohn   07/16/88 - Creation
  21. Rem
  22. set echo on;
  23. grant select on v_$process to public;
  24. grant select on v_$bgprocess to public;
  25. grant select on v_$session to public;
  26. grant select on v_$transaction to public;
  27. grant select on v_$latch to public;
  28. grant select on v_$latchname to public;
  29. grant select on v_$latchholder to public;
  30. grant select on v_$resource to public;
  31. grant select on v_$_lock to public;
  32. grant select on v_$lock to public;
  33. grant select on v_$sesstat to public;
  34. grant select on v_$sysstat to public;
  35. grant select on v_$statname to public;
  36. grant select on v_$access to public;
  37. grant select on v_$dbfile to public;
  38. grant select on v_$filestat to public;
  39. grant select on v_$logfile  to public;
  40. grant select on v_$rollname to public;
  41. grant select on v_$rollstat to public;
  42. Rem
  43. Rem v_$sga here for want of a better place. Enables 'SHOW SGA' command.
  44. Rem 
  45. grant select on v_$sga to public;
  46. Rem v$_parameter here too for want of a better place. Enables 'SHOW PARAMETER'
  47. Rem
  48. grant select on v_$parameter to public;
  49. set echo off;
  50.  
  51.