Oracle has a great table that will give you some great meta data about your other tables and columns called “all_tab_cols“.
1 2 3 4 5 |
select Table_name, Column_name, Data_type, High_value, low_value from all_tab_cols order by table_name desc |