Feature | Rating |
Works in various kinds of databases | 3 (many databases such as DB II, Oracle, SQL Server, MySQL 5, PostGreSQL, FireBird support them). There are also a lot that don’t e.g. MySQL < 5.0, MS Access (although parameterized queries serve a similar role) |
Can be called by multiple applications and interfaces | 4 (generally they can be called, but the use of OUTPUT arguments is not always usable) |
Can take an undefined number of arguments | 2 (note most databases allow to define optional arguments, but this can become very unwieldy to maintain if there are a lot because you end up duplicating logic even within the stored procedure so is generally avoided) |
Reusability within the database | 3 (you can not reuse them in views, rarely in stored functions and other stored procedures unless the stored procedure using it does not require a return value or result query). This varies slightly from DBMS to DBMS. |
Can be used to change data in a table without giving rights to a user to change table directly | 4 In general true for most DBMSs that support them. |
Can return varying number of fields given different arguments. | 3 –again in theory it can, but very hard to maintain since you would often be duplicating logic to say return one field in one situation and other set of fields in another situation or update a field when the field is passed in as an argument. Note that in many databases such as for example SQL Server and Oracle, one can return multiple result sets with a stored procedure, but the receiving end needs to be able to do a next result set call and know the sequence in which the result sets are being sent. |
Long stretches of SQL easy to read and maintain | 5 (one of the great strengths of stored procedures is that you can have long transactions of sql statements and conditional loops which can be all committed at once or rolled back as a unit. This also saves on network traffic. |
Feature | Rating |
Works in various kinds of databases | 3 (many databases such as DB II, Oracle, SQL Server support them, MySQL 5, PostGreSQL). There are also a lot that don’t e.g. MySQL < 5.0, MS Access |
Can be called by multiple applications and interfaces | 4 (generally they can be called, but the use of OUTPUT arguments is not always usable) |
Can take an undefined number of arguments | 2 (note most databases allow to define optional arguments, but this can become very unwieldy to maintain if there are a lot because you end up duplicating logic even within the stored function so is generally avoided) |
Reusability within the database | 5 (you can reuse them in views, in other stored functions and stored procedures). This varies slightly from DBMS to DBMS. |
Can be used to change data in a table without giving rights to a user to change table directly | 3 Many databases do not allow changing of data in stored functions except temp table data, but those that do in general support this. |
Can return varying number of fields given different arguments. | 4 –For databases such as SQL Server, PostgreSQL, DB 2, Oracle that allow return tables and sets, you can selectively pick fields you want from within a query. So although the function always outputs the same number of fields, you can selectively use only some similar to what you can do with views. This is not true for scalar functions (MySQL 5.1- only supports scalar functions). |
Long stretches of SQL easy to read | 5 - yes - you can do fairly intensive multi-line processing which in the end returns one value or table to the user. |