find details of a column in a table in oracle code example
Example: oracle search columns in schema
select t.owner as schema_name,
t.table_name , col.column_name
from sys.all_tab_columns col
inner join sys.all_tables t on col.owner = t.owner
and col.table_name = t.table_name
where col.column_name = ''
and col.owner not in ('')
order by col.owner,
col.table_name;