Stored Procedures | Functions |
---|---|
Stored procedures are stored in parsed and compiled format in the database. | Functions are compiled and executed at run time. |
Stored procedures can not be called in SQL statement like Select. | Functions can be called in SQL statement like Select. |
Stored procedures are usually used for Business logic. | Functions are normally used for computations. |
Stored procedures can contain DML statements. | Functions can not contain DML statements. |
Exception can be called in stored procedure by TRY-CATCH Block. | Exception can not be used in Function |
Stored Procedure may or may not return a value. | Function will always return a value & it can be only single value. |
Transaction management is possible in Procedure | Transaction management Is not possible in Function |
A Function can be called inside a stored procedure | A stored procedure can not be called inside a function. |
Wednesday, January 28, 2015
Difference between Stored Procedures and Functions
Subscribe to:
Post Comments (Atom)
Popular Posts
-
Problem Statement - While creating Power Automate we may face situation where connection reference for the Dataverse Connector missing and w...
-
Many times, it happens that we get an error or exception message while working on the Dynamics 365 UCI form . So, to get more informatio...
-
Objective - To Create Guid PCF Control Pre-Requisites Install Node Js - https://nodejs.org/en/ Install Power Apps CLI - http://download.mi...
-
1. Clone Repository – Login to Azure Devops, open Project, go to Repos and click on “Clone” Note – Here we are using the reposi...
-
Microsoft is about to bring low code power for Model-driven Power Apps and Dataverse using Power Fx. Some areas of innovation: Model-driven ...
No comments:
Post a Comment