Would like to get a list of advantages and disadvantages of using Stored Procedures. The main advantage of SPs seems to be precompiled and an abstraction of data from the application. Give me your thoughts....
|
2
|
|
|
|
|
|
Correction: Whether they're precompiled depends on the database. In SQL Server, for instance, they're not. Stored procedures and parameterized SQL are both compiled before being run. A stored procedure can sometimes reuse an execution plan if a corresponding one exists...but so can parameterized SQL. Edit: Here's what MSDN says about it:
|
|||
|
|
|
|
Advantage: the operations team has a hook to monitor or fix problems in production. |
||
|
|
|
|
Advantage: the DBA can add behavior that the application doesn't care about. For example, storing a modify date on each row. |
||
|
|
|
|
Disadvantages
Advantage
|
|||
|
|
|
|
Advantages -
|
||
|
|
|
Just a few reasons I use stored procedures exclusively when building applications:
|
||
|
|
|
|
With the current .Net 3.5 framework libraries, I would use Linq to perform most database operations. There might be places where SP makes more sense. But Linq has provisions to run an SP too. On the topic of disadvantages of SP, check out the following link - an interesting analysis. Check the blog post's comments too. http://www.spoiledtechie.com/post/Whats-up-with-Stored-Procedures-these-days.aspx |
||
|
|
By using SPs, you also avoid having to give users direct access to tables. All access can be controlled via the SPs. |
||||||||||||
|
|
|
Advantage: Stored procedures can be used to maintain data integrity and enforce database policy without relying on an external program to do so. Disadvantage: Can make debugging more complex. Can also be sensitive to being dropped during copy operations, if not done correctly. |
||
|
|
|
|
Seems like a lot more Advantages than disadvantages for USING Sps.. |
||
|
|
|
|
Another disadvantage is version control, because some of the business logic is now in the database side. Can you easily roll back to v1 (one year ago) from v2 (now)? A feasible solution is versioning the stored procedure names. But now the database is a mess with old and new stored procedures. |
||||||
|
|
|
Advantage: your database-related code is more likely to be written by staff who are interested in and skilled at database work. |
||
|
|
|
|
Advantages: SP's are used to excute set of sql statements. Disadvantages: Debugging is complex |
||
|
|
|
|
Disadvantages
|
|||
|
|
|
|
Advantages: Provides a "public interface" to a database (another abstraction layer). Also groups all queries at the same location, making it easier for DBAs to see how the database is queried and optimize it accordingly. Disadvantages: May not be the best place to put complex logic. However, following the idea that complex logic belongs in application code and not in stored procedures, stored procedure become simply CRUD operations (each table has a "Create", "Read", "Update" and "Delete" procedure). In that case, stored procedures don't add any value to the application, they only complexify maintenance and become waste. Queries are all grouped together, so it's harder to see the context of the application where they are being used. Analyzing the impact of a change is longer, and doing the change is longer as well. Therefore: use stored procedures to encapsulate complex queries (complex joins, complex where clauses, ...). But don't use stored procedure for complex application/domain/business logic, and don't use stored procedures for CRUD either. So stored procedures should be used in a minority of cases rather than be the standard tool for all queries in an application. Group code (including queries) to achieve "functional cohesion" instead of grouping by tool/technology. To allow a DBA to optimize a database based on how it is being queried, use a profiler. |
|||
|
|
