Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL Server-Access Integration

Status
Not open for further replies.

jmon

MIS
Joined
Sep 10, 2001
Messages
1
Location
US
A friend asked me the following question; He has to set up a system with a SQL SErver 2K backend and an Access Front End. I'm assuming that the tables should be on the SQL server side; He asked should the queries be on the clients (in Access) or server (SQL2K).

If more info is needed, what are some possible scenarios and their implications.

Thank you,

jmon
 
Ive done this is the past and yes you do want the data on the SQL server. Set up your Access tables to link to SQL. As for the queries it depends on the amount of data you have. The most efficient way if you have a lot of processing that needs to be done is to have the view on sql and have a pass through query on Access to run it.

 
Most, if not all, data should be on the SQL Server. Exceptions should be restricted to small static lookup tables. All data selection, updates, inserts and deletes should be handled at the SQL Server level if possible. Use views and stored procedures to handle data access.

Avoid attached tables whenever possible. Use pass-through queries to access views and stored procedures. Check out the "Microsoft Access and SQL Integration Resources" at the following link.

Terry L. Broadbent
Programming and Computing Resources
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top