select t.table_name from sys.all_tab_col s t where t.column_name = 'your_column_na me'
this select gives you the list of tables with column 'your_column_na me'
or you can filter tables, using expression like
select t.table_name from sys.all_tab_col s t where t.column_name = 'your_column_na me' and t.table_name='t able_name1' and t.table_name='t able_name2'...
Comment