vince-coder
6/11/2019 - 6:44 PM

Azure Data Studio

Commands

Drop Database

GO

USE [master]
GO
ALTER DATABASE [TreadstoneDBTest] SET  SINGLE_USER WITH ROLLBACK IMMEDIATE
GO

USE [master]
GO

DROP DATABASE [TreadstoneDBTest]
GO