Thanks for the reply and thoughtful advice!
Ok, so, "You use ADO and the Command object" seems to be the real piece here that I need to work on and starting to implement the Stored Procedures on the server. So, going down this road, by using ADO and the Command object, is that all done in code or can I still use a lot of the existing stuff in Access for wiring it all together?
Main Topics
Browse All Topics





by: acperkinsPosted on 2009-11-06 at 10:09:21ID: 25761462
>>which is still pretty slow in certain areas even though SQL Server is now in play. Am I missing anything? Do I have to rebuild indexes to make it faster? <<
If you are just changing the SQL Syntax to comply with the T-SQL syntax, then that is to be expected. It will be a dog.
>>Are calling Views faster than standard in line queries inside the Access app?<<
It depends on the resultset, but in general yes.
>>How about Stored Procedures? Should I be using SPs instead of Views? <<
You should be using Stored Procedures from your Access front end exclusively. There are three reasons for that: Security, maintenance and performance.
>>If so, how is a SP called from inside the Access app - maybe the same as linking up a View as a table?<<
You use ADO and the Command object.