I am diving back into the world of Access for the first time in years...and coordinating that with SQL for the first time so please forgive my ignorance here. Here is what I am trying to do:

I have an Access 2010 front end that queries (and will eventually update) data from SQL Server. Thus far I am using pass through queries against my SQL tables.

I have already established one ODBC connection to one of our servers. What I need is a way to dynamically change the server connection detail once and have that carry forward to all of my tables and queries.

I am using the same database schema, so same exact table structure ensuring my queries will still work....just different servers.

I am envisioning having one user form where either A.) A user enters the particular credentials (Server, Username, Password) or B.) User chooses one pre-existing connection that pulls from a "Connection" table I would house in Access.

Any help you can provide is much appreciated. Thank you.

link|improve this question
1  
I'm not sure what the question actually is here... Doing what you want is extremely simple and straightforward: Have all the tables and queries share the same connection, and when you want to change servers you simply close the connection, change the connection string to point to the new server (and provide any new credentials), and open the connection again. Am I missing something? – Ken White Jan 20 at 17:00
Thanks Ken, that is exactly what I want to do. So how do I dynamically change the connection string? I want the ability for my users to choose a server from a drop down menu in a form that dynamically changes the connection string for all tables and pass through queries. Thanks again. – Beebes Jan 20 at 17:36
How do you set it in the first place? You simply do that again in code. For the list, I'd create a list of "friendly names" for displaying to the user, and the actual server names in a dictionary or something that pairs those friendly names to the server name. Build a new connection string based on the user's choice (they pick a friendly name, you use it to look up the actual name, build a connection string using that server name and any credentials as needed, and connect to the new server using that connection string). Do a search here on "connection string" (without the quotes) for info. – Ken White Jan 20 at 18:24
feedback

1 Answer

Use a DSN for the ODBC connections on your linked tables and pass-through queries. Then, when you want to switch all those connections from one server to another, modify the DSN's server property.

link|improve this answer
Worked! Thanks very much! – Beebes Mar 1 at 14:17
feedback

Your Answer

 
or
required, but never shown

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