Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why execute stored procedures is faster than SQL query from a script?

Tags:

In fact, if I call the stored procedures from my application, I need a connection to my DB.

So, why calling a "stored procedures" should be faster than "passing a SQL query" string to be executed?

like image 355
markzzz Avatar asked Dec 19 '11 09:12

markzzz


People also ask

Why is stored procedure faster than a query?

Stored procedures are precompiled and optimised, which means that the query engine can execute them more rapidly. By contrast, queries in code must be parsed, compiled, and optimised at runtime. This all costs time.

Which one is faster SQL query or stored procedure?

Performance. A stored procedure is cached in the server memory, making the code execution much faster than dynamic SQL.

Is stored procedure faster than inline query?

There is no noticeable speed difference for stored procedures vs parameterized or prepared queries on most modern databases, because the database will also cache execution plans for those queries.

Is stored procedure faster than query in mysql?

Mysql stored procedure is slower 20 times than standard query.


1 Answers

SQL Server basically goes through these steps to execute any query (stored procedure call or ad-hoc SQL statement):

1) syntactically check the query
2) if it's okay - it checks the plan cache to see if it already has an execution plan for that query
3) if there is an execution plan - that plan is (re-)used and the query executed
4) if there is no plan yet, an execution plan is determined
5) that plan is stored into the plan cache for later reuse
6) the query is executed

The point is: ad-hoc SQL and stored procedures are treatly no differently.

If an ad-hoc SQL query is properly using parameters - as it should anyway, to prevent SQL injection attacks - its performance characteristics are no different and most definitely no worse than executing a stored procedure.

Stored procedure have other benefits (no need to grant users direct table access, for instance), but in terms of performance, using properly parametrized ad-hoc SQL queries is just as efficient as using stored procedures.

Update: using stored procedures over non-parametrized queries is better for two main reasons:

  • since each non-parametrized query is a new, different query to SQL Server, it has to go through all the steps of determining the execution plan, for each query (thus wasting time - and also wasting plan cache space, since storing the execution plan into plan cache doesn't really help in the end, since that particular query will probably not be executed again)

  • non-parametrized queries are at risk of SQL injection attack and should be avoided at all costs

like image 87
marc_s Avatar answered Sep 27 '22 15:09

marc_s