Collections:
"DROP" Statements - Deleting database objects in SQL Server
How to delete database objects with "DROP" statements in SQL Server?
✍: FYIcenter.com
To remove all database objects created by previous tutorials, you could just delete the database. However, in this tutorial, you will go through the steps to reverse every action you took doing the tutorial.
Removing permissions and objects - Before you delete objects, make sure you are in the correct database:
USE TestData; GO
Use the REVOKE statement to remove execute permission for Mary on the stored procedure:
REVOKE EXECUTE ON pr_Names FROM Mary; GO
Use the DROP statement to remove permission for Mary to access the TestData database:
DROP USER Mary; GO
Use the DROP statement to remove permission for Mary to access this instance of SQL Server 2005:
DROP LOGIN [<computer_name>\Mary]; GO
Use the DROP statement to remove the store procedure pr_Names:
DROP PROC pr_Names; GO
Use the DROP statement to remove the view vw_Names:
DROP View vw_Names; GO
Use the DELETE statement to remove all rows from the Products table:
DELETE FROM Products; GO
Use the DROP statement to remove the Products table:
DROP Table Products; GO
You cannot remove the TestData database while you are in the database; therefore, first switch context to another database, and then use the DROP statement to remove the TestData database:
USE MASTER; GO DROP DATABASE TestData; GO
⇒ Database Engine Tutorials from SQL Server 2005 Books Online
⇐ "GRANT EXECUTE" Statements - Granting EXECUTE permission in SQL Server
⇑ Getting Started with Transact-SQL Statements in SQL Server
2016-11-27, 3269🔥, 0💬
Popular Posts:
What Are the Differences between BINARY and VARBINARY in MySQL? Both BINARY and VARBINARY are both b...
What Is the Difference Between GETDATE() and GETUTCDATE() in SQL Server Transact-SQL? The difference...
How To Generate CREATE VIEW Script on an Existing View in SQL Server? If you want to know how an exi...
Where to find MySQL database server tutorials? Here is a collection of tutorials, tips and FAQs for ...
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...