Aug 04, 2020 10:57 am
Stored Procedure Advantages and Disadvantages
1 Reply
Aug 05, 2020 5:19 am
Here are the Disadvantage and Advantages of stored procedures in SQL Server
Advantages
Stored Procedure can be used as modular programming which means create once, store, and call several times whenever it is required. This supports faster execution. It also reduces network traffic and provides better security to the data.
Disadvantage:
The only disadvantage of Stored Procedure is that it can be executed only in the database and utilizes more memory in the database server.