Możesz użyć VIRTUAL_COLUMN kolumna USER_TAB_COLS (lub ALL_TAB_COLS lub DBA_TAB_COLS w zależności od posiadanych uprawnień i właściciela danej tabeli.
SELECT virtual_column
FROM all_tab_cols
WHERE owner = <<owner of the table>>
AND table_name = <<name of table>>
AND column_name = <<name of column>>