Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need a way to get al the linked tables and con string to a table.

Status
Not open for further replies.

sparkbyte

Technical User
Sep 20, 2002
879
US
I have several Access applications that use ODBC linked tables and need a way to get a list of all the linked tables and the connection strings associated with them into a SQL table.

Anyone have anything that I might use or a link to an example??

I trying to populate a table like this.

PK_ID,Application,ODBC_Driver,LinkedTableName,RemoteTableName,Server,Table,ConnString

Thanks

John Fuhrman
 
for starters

SELECT MSysObjects.Connect, MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Type)=4));
 
Sorry sb

SELECT MSysObjects.Connect, MSysObjects.Name,MSysObjects.ForeignName
FROM MSysObjects
WHERE (((MSysObjects.Type)=4));
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top