From 3fd3e696ce17e0515b3399a13d1c4040b3e05562 Mon Sep 17 00:00:00 2001 From: Abhilash Panicker Date: Mon, 5 Dec 2022 17:09:42 +0530 Subject: [PATCH] Add content for Stored Procedures (#3047) * Update 102-stored-procedures.md Added information and link * Update content/roadmaps/116-aspnet-core/content/102-database-fundamentals/102-stored-procedures.md Co-authored-by: Kamran Ahmed --- .../102-database-fundamentals/102-stored-procedures.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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