Files
oracle/timhall/11g/admin_privs.sql

12 lines
510 B
MySQL
Raw Permalink Normal View History

2026-03-12 21:23:47 +01:00
-- -----------------------------------------------------------------------------------
-- File Name : https://oracle-base.com/dba/11g/admin_privs.sql
-- Author : Tim Hall
-- Description : Displays the users who currently have admin privileges.
-- Requirements : Access to the V$ views.
-- Call Syntax : @min_datafile_size
-- Last Modified: 30/11/2011
-- -----------------------------------------------------------------------------------
SELECT *
FROM v$pwfile_users
ORDER BY username;