- Right-click “Tables” – “Link Tables…” – Scroll to file type “ODBC …” – Select desired DSN or create a new one – Select the desired tables – for each table select a column to be unique key
- Rename the linked tables: Remove the prefix dbo_
SQL Tip:
--do Accent Insentitive (AI) and Case Insentitive (CI) join select * from [TableA] a left outer join [TableB] b on a.[AID] COLLATE Latin1_general_CI_AI = b.[AID] COLLATE Latin1_general_CI_AI
A couple of links: