Search notes:

Oracle: V$PWFILE_USERS

v$pwfile_users lists all users who have been granted *adminstrative privileges*j (SYSDBA, SYSOPER, SYSBACKUP, SYSDG and/or SYSKM) privileges:
select
   username,
   --
   sysdba,
   sysoper,
   sysasm,
   sysbackup,
   sysdg,
   syskm,
   --
   account_status,
   password_profile,
   last_login,
   lock_date,
   expiry_date,
   external_name,
   authentication_type,
   common,
   password_versions,
   con_id
from
   v$pwfile_users;
The following query selects all users who have been granted the SYSDBA privilege:
select
   username
from
   v$pwfile_users
where
   username != 'SYS'   and
   sysdba    = 'TRUE';

See also

Granting SYSDBA to a user
The orapwd utility
adding users to the password file.

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758206134, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/dynamic-performance-views/pwfile_users(74): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78