Someone internally pointed me to INFORMATION_SCHEMA.COLUMNS as well and helped me put it together like this:select A.table_catalog, A.table_name, A.column_name, B.table_catalog, B.table_name, B.column_namefrom DatabaseA.INFORMATION_SCHEMA.COLUMNS as Afull outer join DatabaseB.INFORMATION_SCHEMA.COLUMNS as B on A.table_name = B.table_name and A.column_name = B.column_namewhere coalesce(A.table_name, B.table_name) in ('table1', 'table2')and ( B.column_name is nullor A.column_name is null)order by coalesce(A.table_name, B.table_name), coalesce(A.ordinal_position,B.ordinal_position)Thought I would post this in case anyone else was looking for this sort of thing.