Benefits Of Stored Procedures
There are many benefits of using a stored procedures like increased execution speed, fast access data, consistency etc. 1. Execution Speed Increased execution speed is the most useful advantage of Stored Procedures. Stored Procedures are optimized the first time they are compiled. Stored procedures are cached on the server. 2. Security One of the most useful advantage of using Stored Procedures is security. We can give execute rights to store procedure so it can perform the right task. It creates a more secure enviroment. 3. Fast Data Access SQL Stored Procedures are optimized for best execution path to the required data. 4. Consistency Utilizing Stored Procedures enforces consistency, since users do not have to create and use their T-SQL statements. 5. Modular Programming One of the most usefull advantage of Stored Procedures that Stored Procedures are located at one location means that there are no confusion and Stored Procedures is the sharing of application...