About 680,000 results
Open links in new tab
  1. Delete a Stored Procedure - SQL Server | Microsoft Learn

    Nov 22, 2024 · This article describes how to delete a stored procedure in SQL Server by using SQL Server Management Studio or Transact-SQL. Deleting a procedure can cause dependent objects and scripts to fail when the objects and scripts are not …

  2. sql server - Stored procedure for Delete record - Stack Overflow

    While insert and update record stored procedures are working fine, I can't delete records through the delete stored procedure. The code in that stored procedure is here: (@Name NVarchar(50), @FName Nvarchar(50), @Address NVarchar (50), @Email Nvarchar(50), @Mobile NVarchar(50), @Pincode NVarchar(50)) DELETE [dbo].[EmployeeDetails] .

  3. sp_query_store_remove_query (Transact-SQL) - SQL Server

    Mar 10, 2025 · Removes the query and all associated plans and runtime stats from the Query Store. Transact-SQL syntax conventions. Important. Arguments for extended stored procedures must be entered in the specific order as described in the Syntax section. If the parameters are entered out of order, an error message occurs.

  4. How to Drop Procedure in SQL - GeeksforGeeks

    Jan 13, 2025 · In SQL Server and most relational database management systems (RDBMS), we use the DROP PROCEDURE command to delete a stored procedure. Basic Syntax for Dropping a Procedure. The syntax to drop a stored procedure is quite simple: Where: procedure_name is the name of the stored procedure that we want to remove.

  5. Deleting a SQL Server stored procedure - MSSQLTips.com

    Apr 22, 2025 · Learn how to drop / delete a SQL Server stored procedure if it is no longer needed to keep your database clean.

  6. How to Delete a Stored Procedure in SQL Server: Step-by-Step …

    01 Jan 2025 — Step-by-step guide to delete a stored procedure in SQL Server using SSMS and T-SQL. Learn best practices, tips, and common error solutions.

  7. How to drop all stored procedures at once in SQL Server

    Apr 10, 2010 · In the Object Explorer pane, select the Stored Procedures folder. Press F7 (or from the main menu, choose View > Object Explorer Details). Select all procedures except the System Table. Press Delete button and select OK. You can delete Tables or Views in the same manner. Save this answer. Show activity on this post.

  8. SQL Server stored procedure delete statement - Stack Overflow

    Feb 28, 2013 · I wish to delete a result a select statement returns, reason I'm doing this is because I have relationships between tables and if I delete from the top-most table its children rows in other tables have to be deleted, too. Can anyone …

  9. How to Delete Stored Procedures in SQL Server

    Mar 7, 2024 · In this SQL Server tutorial, I will explain two methods for removing stored procedures from the database. In the first method, you will use the SSMS to delete the stored procedures; in the second, you will use the query. Let’s start, The command DELETE PROCEDURE can be used to delete stored procedures in SQL Server.

  10. Select, Insert, Update, Delete Using Stored Procedure in SQL Server

    A single stored procedure can be used to select, add, update, and delete data from a database table. In this article, we learned how to create a single stored procedure to perform all operations using a single SP in SQL Server.

  11. Some results have been removed
Refresh