Ad hoc queries vs stored procedures vs Dynamic SQL. Can anyone say pros and cons?

link|improve this question
2  
What RDBMS and what version? – Martin Smith May 29 '10 at 10:27
2  
remember to mark an answer. – Bill Paetzke Jun 1 '10 at 3:00
feedback

4 Answers

Stored Procedures

  • Pro: Good for short, simple queries (aka OLTP--i.e. add, update, delete, view records)
  • Pro: Keeps database logic separate from business logic
  • Pro: Easy to troubleshoot
  • Pro: Easy to maintain
  • Pro: Less bits transferred over network (i.e. only the proc name and params)
  • Pro: Compiled in database
  • Pro: Better security (users don't need direct table access)
  • Pro: Excellent query plan caching (good for OLTP queries--benefits from plan reuse)
  • Con: Excellent query plan caching (bad for OLAP queries--benefits from unique plans)
  • Con: Makes you tied to that SQL vendor

Dynamic SQL (i.e. uses exec command within a stored procedure)

  • Pro: Good for short, simple queries (aka OLTP)
  • Pro: Keeps database logic separate from business logic
  • Pro: Less bits transferred over network (i.e. only the proc name and params)
  • Pro: Allows any table, database, or column to be referenced
  • Pro: Allows predicates (in WHERE clause) to be added/removed based on parameters
  • Pro: Good query plan caching (mediocre-to-good for both OLTP and OLAP queries)
  • Con: Only the static elements of the proc can be compiled
  • Con: Makes you tied to that SQL vendor
  • Con: More difficult to troubleshoot

Ad Hoc SQL (i.e. created in your business code)

  • Pro: Good for long, complex quieres (aka OLAP--i.e. reporting or analysis)
  • Pro: Flexible data access
  • Pro: ORM usage is possible; can be compiled/tested in code (i.e. Linq-to-Sql or SqlAlchemy)
  • Pro: Poor query plan caching (good for OLAP queries--benefits from unique plans)
  • Con: Poor query plan caching (bad for OLTP queries--benefits from plan reuse)
  • Con: More bits transferred over network (i.e. the whole query and params)
  • Con: More difficult to maintain, if you don't use an ORM
  • Con: More difficult to troubleshoot, if you don't use an ORM

Note: Always parameterize your ad hoc SQL.

For OLAP ad hoc SQL: only parameterize string data. This satisfies two conditions. It prevents SQL injection attack. And it makes the queries look more unique to the database. Yes, you'll get a poor query plan cache hit ratio. But that's desirable for OLAP queries. They benefit from unique plan generation, since their datasets and most efficient plans vary greatly among given parameters.

link|improve this answer
+1 Also I would add to the list effect on Network traffic, plan caching. – Martin Smith May 29 '10 at 10:39
@Martin -- I just added network and plan caching info. Thanks for the suggestion. – Bill Paetzke May 29 '10 at 10:56
2  
Also another big plus for stored proc: your users don't need direct table access! Big plus in terms of security (and safety) – marc_s Feb 9 '11 at 5:41
I'm pretty sure you meant "More bits transferred over network" to be a Con for Ad Hoc SQL. (Although, with OLAP you'd expect to be dealing with larger data sets where the size of data transmitted TO the server is insignificant.) – Nate C-K Aug 16 '11 at 17:17
@marc_s: Implementing all that security on the DB side is nice, but it also just ties you even more tightly to the DB vendor. If you have a separate data layer you can implement your security there, and then set up the DB so it will only take writes from the data layer's user. You might find some arguments for why doing it on the DB is safer, but I'm not sure it's worth the sacrifices you make. – Nate C-K Aug 16 '11 at 17:20
show 4 more comments
feedback

Stored procedures PROs:

  • Compiled. This means that it's faster to run and has positive impact on your database server's CPU due to bypassing optimization/compilation stage for all but first execution.
  • Allow clean permissioning control over complex read and write queries.
  • Provide for reusable API allowing one GOOD efficient implementation, instead of a bunch of Yahoos on a variety of platforms from a variety of apps re-implementing the samke queries and risking getting inefficient implementations
  • Like any API, provide abstraction layer. You can change underlying implementation (schema) without changing any code calling the SP. That's an extremely big plus when there's 100s of apps across all platforms which use the query.

Stored procedures CONs:

  • Hard to code flexible logic compared with dynamic SQL
  • Having pre-compiled version can lead to less efficient execution as your data drifts and optimizer choices change. This is easy to ameliorate by re-compiling once in a while.
link|improve this answer
feedback

Stored procedures

  • Pro: Permissioning of actions without needing to grant more fundamental rights at the table level.
  • Pro: Discrete and versionable
  • Pro: Allows you to isolate your schema from your data access code.
  • Con: Can be tedious to code CRUD procedures
  • Con: Need to be kept in line with underlying schema

Ad hoc and dynamic - see Bill Paetzke's answers and comments.

Also, don't forget patterns such as bulk insert for SQL which isn't in your list but should still be considered.

link|improve this answer
feedback

RDBMS? This answer is specific to older oracle

In older oracle version < 11, dynamic sql does not reuse existing SGA sqltext plans, it creates a new entry for every execution plan the parser needs. With a lot a dynamic sql calls the sqltext area gets flushed fast enough that query reuse goes way down and peformance follows it on down.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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