diff --git a/content/roadmaps/116-aspnet-core/content/102-database-fundamentals/102-stored-procedures.md b/content/roadmaps/116-aspnet-core/content/102-database-fundamentals/102-stored-procedures.md index ff0ca159f..14de4b1e2 100644 --- a/content/roadmaps/116-aspnet-core/content/102-database-fundamentals/102-stored-procedures.md +++ b/content/roadmaps/116-aspnet-core/content/102-database-fundamentals/102-stored-procedures.md @@ -1 +1,5 @@ -# Stored procedures \ No newline at end of file +# Stored Procedures + +A stored procedure is a pre-compiled collection of SQL statements that can be executed on a database server. Stored procedures are typically used to perform specific tasks, such as retrieving data from a database, inserting or updating data, or performing complex calculations. They are stored on the database server and can be called or executed from a client application or other stored procedures. Stored procedures can improve database performance by reducing the amount of SQL code needed to be executed and allowing developers to reuse common pieces of code. They can also provide security by allowing database administrators to control which users have access to specific stored procedures. + +Stored Procedure Tutorial