vote up 1 vote down star

Microsoft Access is a slick way to access data in a MS SQL Server backend database, but I've always had problems accessing (so to speak) large tables of data, especially when trying to toggle between results and design mode in Access.

Access gives me a number of nifty things, not the least of which is Crosstabs, but this hung connection to the server drives me a little crazy!

Does any MS Access gurus know how to optimize the ODBC connection so it isn't doing what appears to be full table scans when I just want to tweak and build my queries?

flag

4 Answers

vote up 3 vote down check

The ODBC driver will pass as much work as possible to SQL Server but as soon as you use a vba function like Nz or non-SQL Server syntax like PIVOT then the ODBC driver must pull back more data and indexes to get the work done on the client side.

As per other answer either build your views in SQL Server and link to the views or else use an Access Data Project.

NB: PIVOT queries with unknown number of columns cannot be handled in SQL Server in the same way that Access will do this natively - so if you run a pivot in Access against SQL Server data you will likely pull the whole table back. Pivot queries must be built in SQL Server using dynamic SQL techniques or else pre-saved views that have all the columns hard coded. Check out this link for one way to do this:

http://www.sqlservercentral.com/articles/Advanced+Querying/pivottableformicrosoftsqlserver/2434/

link|flag
vote up 1 vote down

Have you considered an Access project (ADP)? It can be much faster than an mdb for SQL Server back-end.

http://office.microsoft.com/en-us/access/HP052731031033.aspx

link|flag
Microsoft is deprecating ADPs in favor of MDBs+ODBC. The ADP in Access 2007 was not really improved, and is unlikely to see any further development. – David W. Fenton Oct 15 '08 at 19:53
They'll have to fix linked tables in Access first - they create client side write cursors and are very very slow. – Keith Oct 17 '08 at 10:00
vote up 0 vote down

Unfortunately Access is not able to push a lot of that work to the server, and yes, it will do huge table scans when designing queries against multiple tables or views in SQL Server.

You can build and tweak queries (views) in SQL Server using SSMS and store the views in SQL Server for a massive performance boost and still use Access for your front end.

link|flag
Not necessarily. Jet is quite smart (open a trace on your SQL Server and watch what Jet actually sends to the SQL Server), and if you have proper indexes on your SQL Server tables and don't have any WHERE clauses with expressions in them, it should send it all to the server for processing. – David W. Fenton Oct 15 '08 at 19:55
vote up 1 vote down

As others have said, the only way to improve performance on large tables is to have the SQL Server database engine do the work for you. A method of doing this which hasn't been mentioned is to use a pass-through query, which will enable you to keep all your code in MS Access, without having to create objects on the SQL Server:

http://support.microsoft.com/kb/303968

You will have to write SQL Server T-SQL rather than the Access dialect; however, SQL 2005 (when running in compatibility mode 90) does support a PIVOT command.

link|flag

Your Answer

Get an OpenID
or

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