ODBC connection questions

sschrupp

Board Regular
Joined
Sep 23, 2005
Messages
86
Hi everyone,

I've made a database that has a couple linked tables connected to our SQL servers. I had to create an ODBC connection on my PC in order to access them. When I sent a copy of the database to my co-worker to check out he can't access the ODBC because he doesn't have the same connections set up on his PC like I do.

I've never really dealt with ODBC connections before so I'm a total beginner when it comes to this. I'm assuming there's a way to have other users access a database on their own PCs without having to set up identical connections on each PC.

So what can you all tell me to help me out?

Thanks!
Shane
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Shane,

I have run into the same problem you are discussing, and I don't know if there is any way around setting up an ODBC connection on each computer. That is what I ended up doing.

I would love to hear if there is a better way of doing it myself, but I don't know if there is.
 
Upvote 0
You *should* be able to get IT to set up a System DSN for the database. That way, it's possible for all users to get it without creating a DSN on each machine.

Denis
 
Upvote 0
Denis,

I am going to have to talk to my network guys here about that. What exactly is a System DSN? Is it something like a network level ODBC connection?
 
Upvote 0
Denis,

I looked at it a little more, and that is how I currently create the ODBC connection for each computer (use System DSN). I do this buy going to Administrative Tools -> Date Sources (ODBC) -> System DSN..., but this still requires us to do it on each computer.

Is there a different way to set it up so it is available to all computers without having to do it on each computer?
 
Upvote 0
Sorry, wild goose chase :oops:

I was under the impression that System DSN's could be pushed out to all PC's but that is not the case. The advantages of System DSN's are (1) better performance, and (2) you can use them with ADO. See... http://support.microsoft.com/kb/300596

Another option, if you are merely reading from the remote source and don't need to write back, is to create pass-through queries in Access. They also perform well, and there is no need to create a DSN because the connection details are stored with the query. Here's a tut on creating pass-through queries... http://www.techonthenet.com/access/tutorials/passthrough/basics01.php

Note: All the stuff that I have read on pass-through queries says that you need an ODBC connection first. I have *not* found that to be necessary.

Steps:
1. New query
2. SQL-specific > Pass-through
3. View > Properties, and create the connection string -- something like
Code:
ODBC;Driver={SQL Server}; Server=Your_Server_Name; Database=Database_Name; Uid=A_Valid_UserID; Pwd=That_users_password
4. Create the SQL for the query.

You lose some convenience because you have to build the SQL, but you gain some convenience in not having to create DSN's for every database that you want to connect to, and you gain a performance improvement because the processing that returns the records happens on teh server, not record-by-record on your PC.

Denis
 
Upvote 0
Denis,

Thank you for this useful information on pass-through queries, I will be putting it to use very soon.

Just a small tip, if the SQL server you're connecting to uses Windows NT account data for logging in rather than SQL Server security then the connection string should be:

Code:
ODBC;Driver={SQL Server}; Server=Your_Server_Name; Database=Database_Name; SSPI

Elia
 
Upvote 0
Thanks for the tip -- I have always used DBs with SQL Server Security so I haven't used the other form of connection string

Denis
 
Upvote 0

Forum statistics

Threads
1,215,410
Messages
6,124,756
Members
449,187
Latest member
hermansoa

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top