Search notes:

Identifying Virtual Columns in Oracle's Data Dictionary

The following query finds virtual columns in the data dictionary.
select
   owner,
   table_name,
   column_name
from
   dba_tab_cols
where
-- owner          =  user and
   virtual_column = 'YES'
;

Index