Stored Procedure

Stored Procedure in Depth

Stored Procedures can be defined as compiled SQL statements stored in the database. Using stored procedures has many advantages over simply calling a query from the front-end, especially in web applications and large size applications. Advantages of Stored Procedures: 1. Since the queries are executed as a batch, the network traffic is significantly reduced. 2. Execution time Stored Procedure in Depth