procedure and function

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jisuprusty
    New Member
    • Mar 2008
    • 7

    procedure and function

    help me
    we know that we are using procedure for DML operations and function for
    CALCULATION purpose . I want to know that why????
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    Since procedures and functions are pre compiled objects the sql statments are not re-parsed during execution. So performance wise it is better than same SQL executed independently which is parsed everytime before execution.

    Comment

    Working...