How to drop a database snapshot


Please execute below code to drop a database snapshot:

USE [master]
GO
DROP DATABASE [<Snapshotname>]
GO


Comments