Search notes:

Oracle: V$ENCRYPTED_TABLESPACES

v$encrypted_tablespaces lists all currently encrypted tablespaces.
select
   ts#,
   encryptionalg,
   encryptedts,
   encryptedkey,
   masterkeyid,
-- --------------------------------------------------------------------------------------------------------
-- masterkeyid is in Base64 format. 
-- The following transformation returns the key in a format which can be used to
-- compare it to the wallet's ORACLE.SECURITY.DB.ENCRYPTION.MASTERKEY
--     (MOS Note 1228046.1)
   utl_raw.cast_to_varchar2(utl_encode.base64_encode('01'||substr(masterkeyid, 1, 4                  ))) ||
   utl_raw.cast_to_varchar2(utl_encode.base64_encode(      substr(masterkeyid, 5, length(masterkeyid))))     masterkey_, 
-- ------------------------------------------------------------------------------------------------------- 
   blocks_encrypted
   blocks_decrypted,
   key_version,
   status,
   ciphermode,
   con_id
from
   v$encrypted_tablespaces;

See also

v$encryption_wallet, v$encryptionkeys, v$client_secrets, v$database_key_info
v$tablespace
sys.enc$
Oracle Dynamic Performance Views

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...', 1741076427, '3.147.65.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/dynamic-performance-views/encrypted_tablespaces/index(69): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78