Reputation: 2045
Is it correct to say that the Functionality of "stored queries" in MS access is the same with "stored Procedure" in MS SQL Server. Which one improve the Performance more?
Upvotes: 0
Views: 1358
Reputation: 8043
A Sub or Function in a module is probably closer to a stored procedure than a query. You can:
A query has similarities to a view (except a view can't accept paramters and only executes a select statement), but is more like a table user-defined function (Without some of the flow control).
Upvotes: 2
Reputation: 91376
No, an Access query is much more limited than a stored procedure. The stored procedure may be better if you are working with an SQL Server back-end and want to do something complicated.
Upvotes: 1