Search notes:

Oracle: V$TABLESPACE

select
  ts#,
  name,
  included_in_database_backup,
  bigfile,
  flashback_on,
  encrypt_in_backup
from
  v$tablespace
order by
  name;
Github repository oracle-patterns, path: /Installed/dynamic-performance-views/tablespace/show.sql

See also

v$encrypted_tablespaces
dba_tablespaces
Oracle Dynamic Performance Views
tablespace

Index