I want to connect to an MS Access 2003 DB from SQL Management Studio 2005 so I can run queries on the Access DB from SQL Management Studio.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 6 down vote accepted

There are two ways to do this:

  1. Add the MDB as a linked server

    http://msdn.microsoft.com/en-us/library/aa213778%28SQL.80%29.aspx

  2. Enable Ad Hoc Queries in SQL Server and use OpenDataSource

    http://riteshshah.wordpress.com/2009/03/02/read-xls-or-mdb-file-with-opendatasource-sql-server-2005/

    http://support.microsoft.com/default.aspx?kbid=266008

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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