Script to Remove Data or Log File
- Kunal Ranpura
- Jan 12, 2020
- 1 min read
--Note: Check is required if you want to remove log file. Only Secondary log file and data file can be removed.
checkpoint
go
USE [DB_Name]
GO
dbcc shrinkfile (DB_name_LOG_2, emptyfile)
go
ALTER DATABASE [DB_Name] REMOVE FILE [DB_Name_LOG_2]
GO
Comments