记在这里, 备用.
select name, recovery_model_desc
from sys.databases
where name = 'WSS_Content_1000'
USE WSS_Content_1000 ;
ALTER DATABASE WSS_Content_1000 SET RECOVERY Simple;
go
use WSS_Content_1000
go
checkpoint
go
checkpoint
go
dbcc shrinkfile(WSS_Content_1000_Log, 200);
go
USE WSS_Content_1000 ;
ALTER DATABASE WSS_Content_1000 SET RECOVERY FULL;
go