home *** CD-ROM | disk | FTP | other *** search
- Rem Copyright (c) 1988 by Oracle Corporation
- Rem NAME
- Rem monitor.sql
- Rem FUNCTION
- Rem Grant public access to all views used by the SQLDBA monitor command.
- Rem NOTES
- Rem This file must be run while logged-in as SYS.
- Rem Catalog.sql must have been run before this file is run.
- Rem
- Rem By default, only users with dba privilege may access the SQLDBA monitor
- Rem screens. The execution of this file grants all users access to the
- Rem screens. This file may be edited to provide access to a subset of
- Rem your users to a subset of the monitor screens. See the DBA guide
- Rem for more information.
- Rem
- Rem MODIFIED
- Rem Bulchan 10/21/88 - Add views for mon file and mon rollback
- Rem Bulchan 10/03/88 - Add v$parameter
- Rem Bulchan 07/22/88 - Add v_$sga
- Rem Mendelsohn 07/16/88 - Creation
- Rem
- set echo on;
- grant select on v_$process to public;
- grant select on v_$bgprocess to public;
- grant select on v_$session to public;
- grant select on v_$transaction to public;
- grant select on v_$latch to public;
- grant select on v_$latchname to public;
- grant select on v_$latchholder to public;
- grant select on v_$resource to public;
- grant select on v_$_lock to public;
- grant select on v_$lock to public;
- grant select on v_$sesstat to public;
- grant select on v_$sysstat to public;
- grant select on v_$statname to public;
- grant select on v_$access to public;
- grant select on v_$dbfile to public;
- grant select on v_$filestat to public;
- grant select on v_$logfile to public;
- grant select on v_$rollname to public;
- grant select on v_$rollstat to public;
- Rem
- Rem v_$sga here for want of a better place. Enables 'SHOW SGA' command.
- Rem
- grant select on v_$sga to public;
- Rem v$_parameter here too for want of a better place. Enables 'SHOW PARAMETER'
- Rem
- grant select on v_$parameter to public;
- set echo off;
-
-