What are the advantages of stored procedure?
Modularity, extensibility, reusability, Maintainability and one time compilation. Stored procedures in PL/SQL offer several advantages: Modularity and Reusability: Stored procedures allow you to encapsulate a set of SQL statements into a single named unit, making the code modular and reusable. Once created, a stored procedure can be called from different parts of a program or … Read more