sql server delete database code example
Example: how to drop a database in sql server when it is in use
BY LOVE SINGH
USE master;
GO
ALTER DATABASE OnlineRestaurant2
SET SINGLE_USER
WITH ROLLBACK IMMEDIATE;
GO
DROP DATABASE OnlineRestaurant2;
BY LOVE SINGH
USE master;
GO
ALTER DATABASE OnlineRestaurant2
SET SINGLE_USER
WITH ROLLBACK IMMEDIATE;
GO
DROP DATABASE OnlineRestaurant2;