I have an MS-Access database that was converted to use SQL Tables using the "Microsoft SQL Server Migration Assistant 2008 for Access" (aka SSMA) and created linked tables (so the MS-Access interface still works but is linked to SQL Tables).

Modifying those tables has been no problem (modify in SQL, use the Linked Table Manager in MS-Access, update tables). But I've not added a new table in SQL and I can't find a way to add that table to the set of linked tables.

I've tried the External Data -> ODBC Database, but it wants me to make a FileDSN and since the SSMA tool didn't require that I don't want to have some tables linked one way and other files liked another way (does anyone know how SSMA links the tables?).

So my underlying question is: Without using DSN how do I add an additional SQL Server table to MS-Access as a linked table?

link|improve this question

72% accept rate
feedback

2 Answers

I always create a DSN for development in order to make creating linked tables easy. Then after linking, I run Doug Steele's code to convert them to DSN-less connect strings:

http://www.accessmvp.com/djsteele/DSNLessLinks.html

Theoretically, his code would tell you enough to figure out how to link DSN-less without using the DSN as a starting point, but I've never found it worth the effort, since it's so easy to create the development DSN and run the conversion once the links are created.

--
David W. Fenton
David Fenton Associates

link|improve this answer
this is great ... if there is anyone that konws how to use them as a starting point that would be fantastic (particularly as I have some DSN-less connections created by SSMA and I'd like to see what they generated). Thanks! – ChrisHDog Jan 22 '09 at 3:42
feedback

This is a pretty popular question on SQLServerPedia, and read through the answers here:

http://sqlserverpedia.com/blog/uncategorized/how-can-i-link-a-sql-server-database-to-ms-access-using-link-tables-in-ms-access/

link|improve this answer
That one seems to use a DSN. It looks like the SSMA doesn't use a DSN? (only because I am able to move that Access file to other machines without creating a DSN on those machines) I'd like to add a new table using the same mechanism. – ChrisHDog Jan 21 '09 at 0:17
As I said, I created the link with a DSN then run Doug Steele's code to convert it to dsn-less. If you looked at his code, it should show how to convert from one to the other. Also, if you already have tables pointing to your SQL Server with DSN-less connect strings, you should be able to copy the format and just change the table name. – David-W-Fenton Feb 6 '11 at 23:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.