Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are Oracle hidden fields?

ALL_TAB_COLS differs from ALL_TAB_COLUMNS in that hidden columns are not filtered out.

What are hidden fields?

This view differs from "ALL_TAB_COLUMNS" in that hidden columns are not filtered out.

like image 705
Oh Chin Boon Avatar asked Aug 24 '11 04:08

Oh Chin Boon


1 Answers

Hidden columns are columns that exist in the table but that cannot be selected. There are various reasons that Oracle might create a hidden column-- two of the more common reasons are

  • When a column is marked as unused but not dropped, it is hidden
  • Oracle virtual columns create hidden columns in the table

Various other Oracle features may create hidden columns as well though those features tend to be more esoteric (i.e. if memory serves, interMedia creates a couple of hidden columns to track various bits of data).

like image 83
Justin Cave Avatar answered Nov 28 '22 00:11

Justin Cave