xxxxxxxxxx
select owner, table_name from all_tab_columns where column_name = 'ID';
xxxxxxxxxx
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;