Almost every SQL Server object that is created may need to be dropped at some time, especially when you are developing. You create a bunch of temporary objects which you do not want to keep in the database for long. Most SQL Server users drop one object at a time using either SSMS or a drop statement. In many scenarios we may need to drop several objects of the same type. Is there a way to drop several objects through less lines of code?
With T-SQL we can drop multiple objects of the same type through a single drop statement. Almost any object that can be dropped in a single drop statement can also be dropped simultaneously with other objects of the same type through one drop statement.
Some of these include objects like databases, tables, functions, stored procedures, rules, synonyms etc.
Let's look at an example.
First we create a few stored procedures, so we can test single and multiple drops.
Script # 1: Create 4 stored procedures
USE AdventureWorks
GO
CREATE PROCEDURE USP1
AS
BEGIN
SELECT TOP 10 * FROM Person.Address
END
GO
CREATE PROCEDURE USP2
AS
BEGIN
SELECT TOP 10 * FROM Person.Address
END
GO
CREATE PROCEDURE USP3
AS
BEGIN
SELECT TOP 10 * FROM Person.Address
END
GO
CREATE PROCEDURE USP4
AS
BEGIN
SELECT TOP 10 * FROM Person.Address
END
GO
Now we have 4 stored procedures to work with.
Let's drop the first three using a single drop statement as shown below.
Script # 2: Drop USP1, USP2, USP3 through three drop statements
USE AdventureWorks
GO
DROP PROCEDURE USP1
DROP PROCEDURE USP2
DROP PROCEDURE USP3
GO
Let's create USP1, USP2 and USP3 again.
USE AdventureWorks
GO
CREATE PROCEDURE USP1
AS
BEGIN
SELECT TOP 10 * FROM Person.Address
END
GO
CREATE PROCEDURE USP2
AS
BEGIN
SELECT TOP 10 * FROM Person.Address
END
GO
CREATE PROCEDURE USP3
AS
BEGIN
SELECT TOP 10 * FROM Person.Address
END
GO
The following script will drop multiple stored procedures through one drop statement. We can see that we just need to put the list of objects to drop and separate them with a comma. as shown below. The rest of the syntax is the same.
Script # 3: Drop USP1, USP2, USP3 through single drop statement
USE AdventureWorks
GO
DROP PROCEDURE USP1,USP2,USP3
GO
Through Script # 3 USP1, USP2 and USP3 have been dropped in a single drop statement.
Following are some of the pros and cons of multiple object drops:
Benefits
Short Comings
Hope this way we can reduce our statements and reduce network traffic.
2 comments:
Interesting article as for me. I'd like to read something more concerning that theme. Thnx for giving this data.
Sexy Lady
Asian escort
Thanks for the feedback. I will try to come up with other things. If u have anything specific in ur mind, let me know, I will try to post it.
Thanks
Sudhir
Post a Comment