I have a linked server in SQL that uses ODBC drivers. If I already know the name of the table I want see I can retrieve it like so:
select * from GPData..root.TableName
The problem is that the only way I know to view all the tables available is to open up Microsoft Access and act like I'm going to create a linked table and during the process it will list the tables for me to choose from.
Is there a way I could list the tables directly from SSMS? And if not, how might I go about doing it programmactically (preferrably in C#)? There must be some way since Access is obviously able to do it.