Posted by --CELKO-- on 02/03/06 22:58
>> Could someone help me with why you would prefer a view over a stored procedure? <<
1) Portable declarative code versus proprietary, procedural code.
2) Security via DCL (GRANT, DENY and REVOKE) that most programmers do
not know about.
3) The WITH CHECK OPTION that most programmers do not know about
4) Possible for in-line expansion of code to help the optimizer whenteh
VIEW is invoked.
5) Possible sharing of data among queries when the VIEW is
materialized. Oracle is good about that.
Navigation:
[Reply to this message]
|