top of page

Script to Remove Data or Log File

--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


 
 
 

Recent Posts

See All
SQL Server Profiler Trace

--Import multiple trace file in sql Table. --All the rollover files will be automatically imported --provide number tracefile to capture...

 
 
 

Comments


bottom of page