What are the pros and cons to keeping SQL in Stored Procs versus Code - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T15:59:58Z http://stackoverflow.com/feeds/question/15142 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code 48 What are the pros and cons to keeping SQL in Stored Procs versus Code Guy 2008-08-18T19:54:39Z 2009-06-15T13:56:21Z <p>What are the advantages/disadvantages of keeping SQL in your C# source code or in Stored Procs? I've been discussing this with a friend on an open source project that we're working on (C# ASP.NET Forum). At the moment, most of the database access is done by building the SQL inline in C# and calling to the SQL Server DB. So I'm trying to establish which, for this particular project, would be best.</p> <p>So far I have:</p> <p>Advantages for in Code:</p> <ul> <li>Easier to maintain - don't need to run a SQL script to update queries</li> <li>Easier to port to another DB - no procs to port</li> </ul> <p>Advantages for Stored Procs:</p> <ul> <li>Performance</li> <li>Security</li> </ul> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15149#15149 14 Answer by Stu for What are the pros and cons to keeping SQL in Stored Procs versus Code Stu 2008-08-18T19:57:57Z 2008-08-18T19:57:57Z <p>The performance advantage for stored procedures is often negligable.</p> <p>More advantages for stored procedures:</p> <ul> <li>Prevent reverse engineering (if created With Encryption, of course)</li> <li>Better centralization of database access </li> <li>Ability to change data model transparently (without having to deploy new clients); especially handy if multiple programs access the same data model</li> </ul> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15151#15151 9 Answer by Crossbrowser for What are the pros and cons to keeping SQL in Stored Procs versus Code Crossbrowser 2008-08-18T20:01:04Z 2008-08-18T20:01:04Z <p>Stored procedures.</p> <p>If an error slips or the logic changes a bit, you do not have to recompile the project. Plus, it allows access from different sources, not just the one place you coded the query in your project.</p> <p>I don't think it is harder to maintain stored procedures, you should not code them directly in the database but in separate files first, then you can just run them on whatever DB you need to set-up.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15152#15152 5 Answer by John Sheehan for What are the pros and cons to keeping SQL in Stored Procs versus Code John Sheehan 2008-08-18T20:01:27Z 2008-08-18T20:01:27Z <p>I prefer keeping in them in code (using an ORM, not inline or ad-hoc) so they're covered by source control without having to deal with saving out .sql files.</p> <p>Also, stored procedures aren't inherently more secure. You can write a bad query with a sproc just as easily as inline. Parameterized inline queries can be just as secure as a sproc.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15153#15153 43 Answer by Eric Z Beard for What are the pros and cons to keeping SQL in Stored Procs versus Code Eric Z Beard 2008-08-18T20:01:58Z 2008-08-18T20:01:58Z <p>This is being discussed on a few other threads here currently. I'm a consistent proponent of stored procedures, although some good arguments for Linq to Sql are being presented.</p> <p>Embedding queries in your code couples you tightly to your data model. Stored procedures are a good form of contractual programming, meaning that a DBA has the freedom to alter the data model and the code in the procedure, so long as the contract represented by the stored procedure's inputs and outputs is maintained.</p> <p>Tuning production databases can be extremely difficult when the queries are buried in the code and not in one central, easy to manage location.</p> <p>[Edit] Here is another <a href="http://beta.stackoverflow.com/questions/14530/linq-vs-stored-procedures#14549" rel="nofollow">current discussion</a></p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15159#15159 17 Answer by Rob Allen for What are the pros and cons to keeping SQL in Stored Procs versus Code Rob Allen 2008-08-18T20:07:42Z 2009-04-17T14:10:18Z <blockquote> <p>Advantages for in Code:</p> <ul> <li>Easier to maintain - don't need to run a SQL script to update queries</li> <li>Easier to port to another DB - no procs to port</li> </ul> </blockquote> <p>Actually, I think you have that backwards. IMHO, SQL in code is pain to maintain because:</p> <ul> <li>you end up repeating yourself in related code blocks</li> <li>SQL isn't supported as a language in many IDE's so you have just a series of un-error checked strings performing tasks for you</li> <li>changes in a data type, table name or constraint are far more prevalent than swapping out an entire databases for a new one</li> <li>your level of difficulty increases as your query grows in complexity </li> <li>and testing an inline query requires building the project</li> </ul> <p>Think of Stored Procs as methods you call from the database object - they are much easier to reuse, there is only one place to edit and in the event that you do change DB providers, the changes happen in your Stored Procs and not in your code.</p> <p>That said, the performance gains of stored procs is minimal as Stu said before me and you can't put a break point in a stored procedure (yet).</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15162#15162 3 Answer by Eugene Katz for What are the pros and cons to keeping SQL in Stored Procs versus Code Eugene Katz 2008-08-18T20:10:20Z 2008-08-18T20:10:20Z <p>One of the suggestions from a Microsoft TechEd sessions on security which I attended, to make all calls through stored procs and deny access directly to the tables. This approach was billed as providing additional security. I'm not sure if it's worth it just for security, but if you're already using stored procs, it couldn't hurt.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15173#15173 4 Answer by Andrew G. Johnson for What are the pros and cons to keeping SQL in Stored Procs versus Code Andrew G. Johnson 2008-08-18T20:15:39Z 2008-08-18T20:15:39Z <p>Definitely easier to maintain if you put it in a stored procedure. If there's difficult logic involved that will potentially change in the future it is definitely a good idea to put it in the database when you have multiple clients connecting. For example I'm working on an application right now that has an end user web interface and an administrative desktop application, both of which share a database (obviously) and I'm trying to keep as much logic on the database as possible. This is a perfect example of the <a href="http://en.wikipedia.org/wiki/Don%27t_repeat_yourself" rel="nofollow">DRY principle</a>.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15174#15174 5 Answer by SQLMenace for What are the pros and cons to keeping SQL in Stored Procs versus Code SQLMenace 2008-08-18T20:16:14Z 2008-08-18T20:16:14Z <p>Think of it this way</p> <p>You have 4 webservers and a bunch of windows apps which use the same SQL code Now you realized there is a small problem with the SQl code so do you rather...... change the proc in 1 place or push the code to all the webservers, reinstall all the desktop apps(clickonce might help) on all the windows boxes</p> <p>I prefer stored procs</p> <p>It is also easier to do performance testing against a proc, put it in query analyzer set statistics io/time on set showplan_text on and voila</p> <p>no need to run profiler to see exactly what is being called</p> <p>just my 2 cents</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15181#15181 6 Answer by Keith for What are the pros and cons to keeping SQL in Stored Procs versus Code Keith 2008-08-18T20:24:53Z 2008-08-18T20:24:53Z <p>You list 2 pro-points for sprocs:</p> <p>Performance - not really. In Sql 2000 or greater the query plan optimisations are pretty good, and cached. I'm sure that Oracle etc do similar things. I don't think there's a case for sprocs for performance any more.</p> <p>Security? Why would sprocs be more secure? Unless you have a pretty unsecured database anyway all the access is going to be from your DBAs or via your application. Always parametrise all queries - never inline something from user input and you'll be fine.</p> <p>That's best practice for performance anyway.</p> <p>Linq is definitely the way I'd go on a new project right now. See this <a href="http://beta.stackoverflow.com/questions/14530/linq-vs-stored-procedures#14531" rel="nofollow">similar post</a>.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15185#15185 8 Answer by Rick for What are the pros and cons to keeping SQL in Stored Procs versus Code Rick 2008-08-18T20:29:35Z 2008-08-18T20:29:35Z <p>I fall on the <strong><em>code</em></strong> side. We build data access layer that's used by all all the apps (both web and client), so it's DRY from that perspective. It simplifies the database deployment because we just have to make sure the table schema's are correct. It simplifies code maintenance because we don't have to look at source code and the database. </p> <p>I don't have much problem with the tight coupling with the data model because I don't see where it's possible to really break that coupling. An application and its data are inherently coupled.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15193#15193 7 Answer by MatthieuF for What are the pros and cons to keeping SQL in Stored Procs versus Code MatthieuF 2008-08-18T20:35:25Z 2008-08-18T20:35:25Z <p>Advantages for Stored procedures:</p> <p>More easily code reviewed.</p> <p>Less coupled, therefore more easily tested.</p> <p>More easily tuned.</p> <p>Performance is generally better, from the point of view of network traffic - if you have a cursor, or similar, then there aren't multiple trips to the database</p> <p>You can protect access to the data more easily, remove direct access to the tables, enforce security through the procs - this also allows you to find relatively quickly any code that updates a table.</p> <p>If there are other services involved (such as Reporting services), you may find it easier to store all of your logic in a stored procedure, rather than in code, and having to duplicate it</p> <p>Disadvantages:</p> <p>Harder to manage for the developers: version control of the scripts: does everyone have their own database, is the version control system integrated with the database and IDE?</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15201#15201 1 Answer by Terrapin for What are the pros and cons to keeping SQL in Stored Procs versus Code Terrapin 2008-08-18T20:44:20Z 2008-08-18T20:44:20Z <p>Stored Procedures are <em>MORE</em> maintainable because:</p> <ul> <li>You don't have to recompile your C# app whenever you want to change some SQL</li> <li>You end up reusing SQL code. </li> </ul> <p>Code repetition is the <em>worst</em> thing you can do when you're trying to build a maintainable application!</p> <p>What happens when you find a logic error that needs to be corrected in multiple places? You're more apt to forget to change that last spot where you copy &amp; pasted your code.</p> <p>In my opinion, the performance &amp; security gains are an added plus. <strong>You can still write insecure/inefficient SQL stored procedures.</strong></p> <blockquote> <p>Easier to port to another DB - no procs to port</p> </blockquote> <p>It's not very hard to script out all your stored procedures for creation in another DB. In fact - it's <em>easier</em> than exporting your tables because there are no primary/foreign keys to worry about.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15206#15206 0 Answer by Terrapin for What are the pros and cons to keeping SQL in Stored Procs versus Code Terrapin 2008-08-18T20:51:16Z 2008-08-18T20:51:16Z <p>@Keith</p> <blockquote> <p>Security? Why would sprocs be more secure?</p> </blockquote> <p>Stored procedures offer inherent protection from <a href="http://en.wikipedia.org/wiki/SQL_injection" rel="nofollow">SQL Injection</a> attacks.</p> <p>However, you're not completely protected because you can still write stored procedures that are vulnerable to such attacks (i.e. dynamic SQL in a stored proc).</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15226#15226 7 Answer by Guy for What are the pros and cons to keeping SQL in Stored Procs versus Code Guy 2008-08-18T21:12:39Z 2008-08-18T21:12:39Z <p>@Keith</p> <blockquote> <p>Security? Why would sprocs be more secure?</p> </blockquote> <p>As suggested by Komradekatz, you can disallow access to tables (for the username/password combo that connects to the DB) and allow SP access only. That way if someone gets the username and password to your database they can execute SP's but can't access the tables or any other part of the DB.</p> <p>(Of course executing sprocs may give them all the data they need but that would depend on the sprocs that were available. Giving them access to the tables gives them access to everything.)</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15253#15253 2 Answer by Keith for What are the pros and cons to keeping SQL in Stored Procs versus Code Keith 2008-08-18T21:32:57Z 2008-08-18T21:32:57Z <p>@Terrapin - sprocs are just as vulnerable to injection attacks. As I said:</p> <blockquote> <p>Always parametrise all queries - never inline something from user input and you'll be fine.</p> </blockquote> <p>That goes for sprocs and dynamic Sql.</p> <p>I'm not sure not recompiling your app is an advantage. I mean, you have run your unit tests against that code (both application and DB) before going live again anyway.</p> <p><hr /></p> <p>@Guy - yes you're right, sprocs do let you control application users so that they can only perform the sproc, not the underlying action. </p> <p>My question would be: if all the access it through your app, using connections and users with limited rights to update/insert etc, does this extra level add security or extra administration?</p> <p>My opinion is very much the latter. If they've compromised your application to the point where they can re-write it they have plenty of other attacks they can use.</p> <p>Sql injections can still be performed against those sprocs if they dynamically inline code, so the golden rule still applies, all user input must always be parametrised.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15277#15277 41 Answer by Orion Edwards for What are the pros and cons to keeping SQL in Stored Procs versus Code Orion Edwards 2008-08-18T21:50:33Z 2008-10-22T03:49:16Z <p>I am not a fan of stored procedures</p> <blockquote> <p>Stored Procedures are MORE maintainable because: * You don't have to recompile your C# app whenever you want to change some SQL</p> </blockquote> <p>You'll end up recompiling it anyway when datatypes change, or you want to return an extra column, or whatever. The number of times you can 'transparently' change the SQL out from underneath your app is pretty small on the whole</p> <blockquote> <ul> <li>You end up reusing SQL code.</li> </ul> </blockquote> <p>Programming languages, C# included, have this amazing thing, called a function. It means you can invoke the same block of code from multiple places! Amazing! You can then put the re-usable SQL code inside one of these, or if you want to get really high tech, you can use a library which does it for you. I believe they're called Object Relational Mappers, and are pretty common these days.</p> <blockquote> <p>Code repetition is the worst thing you can do when you're trying to build a maintainable application!</p> </blockquote> <p>Agreed, which is why storedprocs are a bad thing. It's much easier to refactor and decompose (break into smaller parts) code into functions than SQL into... blocks of SQL?</p> <blockquote> <p>You have 4 webservers and a bunch of windows apps which use the same SQL code Now you realized there is a small problem with the SQl code so do you rather...... change the proc in 1 place or push the code to all the webservers, reinstall all the desktop apps(clickonce might help) on all the windows boxes</p> </blockquote> <p>Why are your windows apps connecting directly to a central database? That seems like a HUGE security hole right there, and bottleneck as it rules out server-side caching. Shouldn't they be connecting via a web service or similar to your web servers?</p> <p>So, push 1 new sproc, or 4 new webservers?</p> <p>Inn this case it <em>is</em> easier to push one new sproc, but in my experience, 95% of 'pushed changes' affect the code and not the database. If you're pushing 20 things to the webservers that month, and 1 to the database, you hardly lose much if you instead push 21 things to the webservers, and zero to the database.</p> <blockquote> <p>More easily code reviewed.</p> </blockquote> <p>Can you explain how? I don't get this. Particularly seeing as the sprocs probably aren't in source control, and therefore can't be accessed via web-based SCM browsers and so on.</p> <h2>More cons:</h2> <p>Storedprocs live in the database, which appears to the outside world as a black box. Simple things like wanting to put them in source control becomes a nightmare.</p> <p>There's also the issue of sheer effort. It might make sense to break everything down into a <a href="http://ptrthomas.wordpress.com/2006/06/06/java-call-stack-from-http-upto-jdbc-as-a-picture/" rel="nofollow">million tiers</a> if you're trying to justify to your CEO why it just cost them 7 million dollars to build some forums, but otherwise creating a storedproc for every little thing is just extra donkeywork for no benefit.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15297#15297 3 Answer by Santi for What are the pros and cons to keeping SQL in Stored Procs versus Code Santi 2008-08-18T22:10:49Z 2008-08-18T22:26:41Z <p>Use your app code as what it does best: handle logic.<br /> User your database for what it does best: store data. </p> <p>You can debug stored procedures but you will find easier to debug and maintaing logic in code. Usually you will end recompiling your code every time you change the database model.</p> <p>Also stored procedures with optional search parameters are very inneficient because you have to specify in advance all the possible parameters and complex searches are sometimes not possible because you cant predict how many times a parameter is going to be repeated in the seach. </p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/15766#15766 1 Answer by MaseBase for What are the pros and cons to keeping SQL in Stored Procs versus Code MaseBase 2008-08-19T05:44:14Z 2008-08-19T05:44:14Z <p>SQL injection attacks are on the upswing. It's very easy for someone to find this code and run injection attacks on your website. You must always <em><strong>always</strong></em> parameterize your queries. It's best to never run exec(@x) on a dynamic SQL query. It's just not a great idea to use inline SQL ever, IMO.</p> <p>Stored Procedures, as argued by some, are a hassle because they are another set of items to maintain separate from your code. But they are reusable and if you end up finding a bug in your queries, you can at fix them without recompiling.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/16779#16779 0 Answer by Preston for What are the pros and cons to keeping SQL in Stored Procs versus Code Preston 2008-08-19T19:25:17Z 2008-08-19T19:25:17Z <p>I'd like to cast another vote for using stored procs (despite the hassle they can introduce when it comes to maintenance and versioning) as a way to restrict direct access to the underlying tables for better security.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/35340#35340 5 Answer by Natron for What are the pros and cons to keeping SQL in Stored Procs versus Code Natron 2008-08-29T21:27:58Z 2008-08-29T21:27:58Z <p>I like stored procs, dont know how many times I was able to make a change to an application using a stored procedure which didn't produce any downtime to the application.</p> <p>Big fan of Transact SQL, tuning large queries have proven to be very useful for me. Haven't wrote any inline SQL in about 6 years!</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/46128#46128 5 Answer by Joel Hendrickson for What are the pros and cons to keeping SQL in Stored Procs versus Code Joel Hendrickson 2008-09-05T16:01:03Z 2008-09-05T16:01:03Z <p>In some circumstances, dynamically created sql in code can have better performance than a stored proc. If you have created a stored proc (let's say sp_customersearch) that gets extremely complicated with dozens of parameters because it must be very flexible, you can probably generate a much simpler sql statement in code at runtime. </p> <p>One could argue that this simply moves some processing from SQL to the web server, but in general that would be a good thing. </p> <p>The other great thing about this technique is that if you're looking in SQL profiler you can see the query you generated and debug it much easier than seeing a stored proc call with 20 parameters come in.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/46192#46192 1 Answer by yukondude for What are the pros and cons to keeping SQL in Stored Procs versus Code yukondude 2008-09-05T16:17:30Z 2008-09-05T16:17:30Z <p>Something that I haven't seen mentioned thus far: the people who know the database best aren't always the people that write the application code. Stored procedures give the database folks a way to interface with programmers that don't really want to learn that much about SQL. Large--and especially legacy--databases aren't the easiest things to completely understand, so programmers might just prefer a simple interface that gives them what they need: let the DBAs figure out how to join the 17 tables to make that happen.</p> <p>That being said, the languages used to write stored procedures (PL/SQL being a notorious example) are pretty brutal. They typically don't offer any of the niceties you'd see in today's popular imperative, OOP, or functional languages. Think COBOL.</p> <p>So, stick to stored procedures that merely abstract away the relational details rather than those that contain business logic.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/83948#83948 3 Answer by Tom H. for What are the pros and cons to keeping SQL in Stored Procs versus Code Tom H. 2008-09-17T14:40:22Z 2008-09-17T14:40:22Z <p>When it comes to security, stored procedures are much more secure. Some have argued that all access will be through the application anyway. The thing that many people are forgetting is that most security breaches come from inside a company. Think about how many developers know the "hidden" user name and password for your application?</p> <p>Also, as MatthieuF pointed out, performance can be much improved due to fewer round trips between the application (whether it's on a desktop or web server) and the database server.</p> <p>In my experience the abstraction of the data model through stored procedures also vastly improves maintainability. As someone who has had to maintain many databases in the past, it's such a relief when confronted with a required model change to be able to simply change a stored procedure or two and have the change be completely transparent to ALL outside applications. Many times your application isn't the only one pointed at a database - there are other applications, reporting solutions, etc. so tracking down all of those affected points can be a hassle with open access to the tables.</p> <p>I'll also put checks in the plus column for putting the SQL programming in the hands of those who specialize in it, and for SPs making it much easier to isolate and test/optimize code.</p> <p>The one downside that I see is that many languages don't allow the passing of table parameters, so passing an unknown number data values can be annoying, and some languages still can't handle retrieving multiple resultsets from a single stored procedure (although the latter doesn't make SPs any worse than inline SQL in that respect).</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/131926#131926 8 Answer by computinglife for What are the pros and cons to keeping SQL in Stored Procs versus Code computinglife 2008-09-25T07:27:05Z 2008-09-30T01:18:53Z <p><strong>CON</strong></p> <p>I find that doing lots of processing inside stored procedures would make your DB server a single point of inflexibility, when it comes to scaling your act. </p> <p>However doing all that crunching in your program as opposed to the sql-server, <em>might</em> allow you to scale more if you have multiple servers that runs your code. Of-course this does not apply to stored procs that only does the normal fetch or update but to ones that perform more processing like looping over datasets. </p> <p><strong>PROS</strong></p> <ol> <li>Performance for what it may be worth (avoids query parsing by DB driver / plan recreation etc)</li> <li>Data manipulation is not embedded in the C/C++/C# code which means i have less low level code to look through. SQL is less verbose and easier to look through when listed separately. </li> <li>Due to the separation folks are able to find and reuse SQL code much easier.</li> <li>Its easier to change things when schema changes - you just have to give the same output to the code and it will work just fine</li> <li>Easier to port to a different database. </li> <li>I can list individual permissions on my stored procedures and control access at that level too</li> <li>I can profile my data query/ persistance code separate from my data transformation code</li> <li>I can implement changeable conditions in my stored procedure and it would easy to customize at a customer site. </li> <li>It becomes easier to use some automated tools to convert my schema and statements together rather than when it is embedded inside my code where i would have to hunt them down</li> <li>Ensuring best practices for data access is easier when you have all your data access code inside a single file - I can check for queries that access the non performant table or that which uses a higher level of serialization or select *'s in the code etc. </li> <li>It becomes easier to find schema changes / data manipulation logic changes when all of it is listed in one file. </li> <li>It becomes easier to do search and replace edits on SQL when they are in the same place eg change / add transaction isolation statements for all stored procs. </li> <li>I and the DBA guy find that having a separate SQL file is easier / convenient when the DBA has to review my SQL stuff. </li> <li>Lastly you dont have to worry about SQL injection attacks because some lazy member of your team did not use parametrized queries when using embedded sqls.</li> </ol> <p>Edit - corrected spell mistakes and some grammar</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/132041#132041 0 Answer by Bryan Parker for What are the pros and cons to keeping SQL in Stored Procs versus Code Bryan Parker 2008-09-25T08:00:41Z 2008-09-25T08:00:41Z <p>I have yet to find a good way of easily maintaining stored procs in source control that makes it as seamless as the code base. It just doesn't happen. This alone makes putting the SQL in your code worthwhile for me. Performance differences are negligible on modern systems.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/142815#142815 0 Answer by MattMcKnight for What are the pros and cons to keeping SQL in Stored Procs versus Code MattMcKnight 2008-09-27T02:49:34Z 2008-09-27T02:49:34Z <p>Stored procedures are the worst when they are used to stand in-between applications and the database. Many of the reasons for their use stated above are better handled by views.</p> <p>The security argument is spurious. It just moves the security problem from the application to the database. Code is code. I have seen stored procedures that take in SQL from the applications and use it build queries that were subject to SQL injection attacks.</p> <p>In general, they tend to create a rift between so-called database developers and so-called application developers. In reality, all of the code that is written is application code, it is only a difference of the execution context. </p> <p>Using rich SQL generation libraries like LINQ, Rails ActiveRecord, or Hibernate/NHibernate makes development faster. Inserting stored procedures in the mix slows it down.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/146437#146437 2 Answer by Constantin for What are the pros and cons to keeping SQL in Stored Procs versus Code Constantin 2008-09-28T18:32:42Z 2008-09-28T18:32:42Z <p><strong>Smaller logs</strong></p> <p>Another minor pro for stored procedures that has not been mentioned: when it comes to SQL traffic, sp-based data access generates <em>much</em> less traffic. This becomes important when you monitor traffic for analysis and profiling - the logs will be much smaller and readable.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/146477#146477 2 Answer by HLGEM for What are the pros and cons to keeping SQL in Stored Procs versus Code HLGEM 2008-09-28T18:47:49Z 2008-09-28T18:47:49Z <p>I'm firmly on the side of stored procs assuming you don't cheat and use dynamic SQL in the stored proc. First, using stored procs allows the dba to set permissions at the stored proc level and not the table level. This is critical not only to combating SQL injection attacts but towards preventing insiders from directly accessing the database and changing things. This is a way to help prevent fraud. No database that contains personal information (SSNs, Credit card numbers, etc) or that in anyway creates financial transactions should ever be accessed except through strored procedures. If you use any other method you are leaving your database wide open for individuals in the company to create fake financial transactions or steal data that can be used for identity theft.</p> <p>Stored procs are also far easier to maintain and performance tune than SQL sent from the app. They also allow the dba a way to see what the impact of a database structural change will have on the way the data is accessed. I've never met a good dba who would allow dynamic access to the database. </p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/164634#164634 1 Answer by Timothy Lee Russell for What are the pros and cons to keeping SQL in Stored Procs versus Code Timothy Lee Russell 2008-10-02T21:12:19Z 2008-10-02T21:12:19Z <p>I prefer to use an O/R Mapper such as <a href="http://www.llblgen.com" rel="nofollow">LLBLGen Pro</a>.</p> <p>It gives you relatively painless database portability, allows you to write your database access code in the same language as your application using strongly-typed objects and, in my opinion, allows you more flexibility in how you work with the data that you pull back.</p> <p>Actually, being able to work with strongly-typed objects is reason enough to use an O/R Mapper.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/214085#214085 0 Answer by Tom Anderson for What are the pros and cons to keeping SQL in Stored Procs versus Code Tom Anderson 2008-10-17T22:48:11Z 2008-10-17T22:48:11Z <p>I am a huge supporter of code over SPROC's. The number one reasons is keeping the code tightly coupled, then a close second is the ease of source control without a lot of custom utilities to pull it in.</p> <p>In our DAL if we have very complex SQL statements, we generally include them as resource files and update them as needed (this could be a seperate assembly as well, and swapped out per db, etc...).</p> <p>This keeps our code and our sql calls stored in the same version control, without "forgetting" to run some external applications for updating.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/229568#229568 0 Answer by Libor for What are the pros and cons to keeping SQL in Stored Procs versus Code Libor 2008-10-23T12:42:18Z 2008-10-23T12:42:18Z <p>Preference of stored procedures because: - enable fix some data related issues in production while system is running (this is num. one for me) - clean contract definition between DB and program (clean separation of concerns) - better portability to different DB vendor (if written well than code change is usually only on SP side). - better positioned for performance tuning</p> <p>Cons - problematic in case WHERE clause has great variation in used conditions and high performance is needed. </p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/229708#229708 4 Answer by huo73 for What are the pros and cons to keeping SQL in Stored Procs versus Code huo73 2008-10-23T13:27:55Z 2008-10-23T13:27:55Z <p>In my oppinion you can't vote for yes or no on this question. It totally depends on the design of your application. </p> <p>I totally vote against the use of SPs in an 3-tier environment, where you have an application server in front. In this kind of environment your application server is there to run your businnes logic. If you additionally use SPs you start distributing your implementation of business logic all over your system and it will become very unclear who is responsible for what. Eventually you will end up with an application server that will basically do nothing but the following:</p> <pre><code>(Pseudocode) Function createOrder(Order yourOrder) Begin Call SP_createOrder(yourOrder) End </code></pre> <p>So in the end you have your middle tier running on this very cool 4 Server cluster each of them equipped with 16 CPUs and it will actually do nothing at all! What a waste!</p> <p>If you have a fat gui client that directly connects to your DB or maybe even more applications it's a different story. In this situation SPs can serve as some sort of pseudo middle tier that decouples your application from the data model and offers a controllable access.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/229970#229970 0 Answer by Dave Sherohman for What are the pros and cons to keeping SQL in Stored Procs versus Code Dave Sherohman 2008-10-23T14:30:45Z 2008-10-23T14:30:45Z <p>I generally write OO code. I suspect that most of you probably do, too. In that context, it seems obvious to me that all of the business logic - including SQL queries - belongs in the class definitions. Splitting up the logic such that part of it resides in the object model and part is in the database is no better than putting business logic into the user interface.</p> <p>Much has been said in earlier answers about the security benefits of stored procs. These fall into two broad categories:</p> <p>1) Restricting direct access to the data. This definitely is important in some cases and, when you encounter one, then stored procs are pretty much your only option. In my experience, such cases are the exception rather than the rule, however.</p> <p>2) SQL injection/parametrized queries. This objection is a red herring. Inline SQL - even dynamically-generated inline SQL - can be just as fully parametrized as any stored proc and it can be done just as easily in any modern language worth its salt. There is no advantage either way here. ("Lazy developers might not bother with using parameters" is not a valid objection. If you have developers on your team who prefer to just concatenate user data into their SQL instead of using parameters, you first try to educate them, then you fire them if that doesn't work, just like you would with developers who have any other bad, demonstrably detrimental habit.)</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/240010#240010 1 Answer by ObiWanKenobi for What are the pros and cons to keeping SQL in Stored Procs versus Code ObiWanKenobi 2008-10-27T14:12:58Z 2008-10-27T14:12:58Z <p>My vote for stored procedures; as an abstraction layer close to the data, efficient with sets, reusable by many "clients" (client languages). The T-SQL language is a bit primitive (and I guess that's what most of the C# guys here at SO have been exposed to), but Oracle's PL/SQL is on par with any modern programming language.</p> <p>As for version control, just put the stored procedure code in text files under version control, then run the scripts to create the procs in the database.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/350760#350760 3 Answer by Theresa for What are the pros and cons to keeping SQL in Stored Procs versus Code Theresa 2008-12-08T20:22:52Z 2008-12-08T20:22:52Z <p>We use stored procedures with Oracle DB's where I work now. We also use Subversion. All the stored procedures are created as .pkb &amp; .pks files and saved in Subversion. I've done in-line SQL before and it is a pain! I much prefer the way we do it here. Creating and testing new stored procedures is much easier than doing it in your code.</p> <p>Theresa</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/757267#757267 0 Answer by kishore for What are the pros and cons to keeping SQL in Stored Procs versus Code kishore 2009-04-16T17:44:51Z 2009-04-16T17:44:51Z <p>Pros to stored procedures 1). Improved security as the SQL in stored procedure is static in nature(Mostly). This will protect against SQL injection. 2). Reusability. If there is a need to return the same data for multiple applications/components, this may be a better choice instead of repeating the SQL statements. 3). Reduces calls between client and database server.</p> <p>I am not sure about other databases but you can create stored procedures in host languages in db2 on mainframe which makes them very powerful. </p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/966343#966343 0 Answer by Neil for What are the pros and cons to keeping SQL in Stored Procs versus Code Neil 2009-06-08T18:49:02Z 2009-06-08T18:49:02Z <p>Foot firmly in the "Stored Procs are bad for CRUD/business logic use" camp. I understand the need in reporting, data import, etc</p> <p><a href="http://gratdevel.blogspot.com/2009/06/stored-procs-vs-well-not-stored-procs.html" rel="nofollow">Write up here...</a></p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/966375#966375 2 Answer by AlexKuznetsov for What are the pros and cons to keeping SQL in Stored Procs versus Code AlexKuznetsov 2009-06-08T18:55:55Z 2009-06-08T18:55:55Z <p>The following is a must read by SQL Server MVP Paul Nielsen:</p> <p><a href="http://sqlblog.com/blogs/paul_nielsen/archive/2009/05/09/why-use-stored-procedures.aspx" rel="nofollow">http://sqlblog.com/blogs/paul_nielsen/archive/2009/05/09/why-use-stored-procedures.aspx</a></p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/966585#966585 0 Answer by Kragen for What are the pros and cons to keeping SQL in Stored Procs versus Code Kragen 2009-06-08T19:38:31Z 2009-06-08T19:38:31Z <p>For Microsoft SQL Server you should use stored procedures wherever possible to assist with execution plan caching and reuse. Why do you want to optimise plan re-use? Because the generation of execution plans is fairly expensive to do.</p> <p>Although the caching and reuse of execution plans for ad-hoc queries has improved significantly in later editions of SQL server (especially 2005 and 2008) there are still far fewer issues with plan reuse when dealing with stored procedures than there are for ad-hoc queries. For example, SQL server will only re-use an execution plan if the plan text matches <strong>exactly</strong> - right down to comments and white space, for example, if each of the following lines of SQL were to be executed independently, none of them would use the same execution plan:</p> <pre><code>SELECT MyColumn FROM MyTable WHERE id = @id select MyColumn from MyTable WHERE id = @id SELECT MyColumn FROM MyTable WHERE id = @id SELECT MyColumn FROM MyTable WHERE id = @id -- "some comment" SELECT MyColumn FROM MyTable WHERE id = @id -- "some other comment" </code></pre> <p>On top of this, if you don't explicitly specify the types of your parameters then there is a good chance that SQL Server might get it wrong, for example if you executed the above query with the input 4, then SQL Server will parametrise the query with @id as a SMALLINT (or possibly a TINYINT), and so if you then execute the same query with an @id of say 4000, SQL Server will parametrise it as an INT, and wont reuse the same cache.</p> <p>I think there are also some other issues, and in honesty most of them can probably be worked around - especially with later editions of SQL Server, but stored procedures generally offer you more control.</p> http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code/996265#996265 0 Answer by GuinnessFan for What are the pros and cons to keeping SQL in Stored Procs versus Code GuinnessFan 2009-06-15T13:56:21Z 2009-06-15T13:56:21Z <p>Programmers want the code in their app. DBA's want it in the database. </p> <p>If you have both, you can divide the work between the two by using stored procedures and the programmers don't have to worry about how all those tables join together etc. (Sorry, I know you want to be in control of everything.).</p> <p>We have a 3rd party application that allows custom reports to be created on a View or Stored Procedure in the database. If I put all of my logic in the code in another application, I could not reuse it. If you are in a situation where you write all of the apps using the database, this isn't a problem.</p>