Hi all,
I have a DB (MSSS 2005) with two log files. I ran this script to through query analyzer in the management tool to try and drop the second one:
It seems to run with success but when I right-click on the database and look at the files it still shows up. Que pasa?
I have a DB (MSSS 2005) with two log files. I ran this script to through query analyzer in the management tool to try and drop the second one:
Code:
dbcc shrinkfile (LogFileName, EMPTYFILE)
go
alter database DatabaseName
remove file LogFileName
go