Reputation: 464
I need to connect to a SQL Server database that isn't currently listed in the "Data Source Name" field. I've created plenty of OLE DB (ADO) data sources before but this is the first time I've had to use an ODBC (RDO) connection.
the user that sent me this has her information saved in the report and it work from her computer only. She's handing this out to other users and of course it prompts them with the below image (and the DB in question isn't listed). Any help as to how I can get that DB listed would be a great help.
Upvotes: 0
Views: 215
Reputation: 9101
First you need to create the ODBC
connection that establishes the connection to database.. before creating take care to use the same DSN name
that was used to develop the report.
Follow below steps to create a ODBC connection:
Go to run---> type ODBCAD32 --> User tab ---> click Add --> There select the type of database driver ---> Then you get the window where you can add DSN Name and all other fields
Before doing above process make sure that you have all database details with you.
Upvotes: 0
Reputation: 9607
You need to create the ODBC connection on her local PC in your local environment. Exporting to a .reg format is an easy way to copy the connections without going through the UI.
Upvotes: 1