Loading

压缩LDF档

--压缩LDF档
USE VoucherServer;
GO
-- Truncate the log by changing the database recovery model to SIMPLE.
ALTER DATABASE VoucherServer
SET RECOVERY SIMPLE;
GO
-- Shrink the truncated log file to 1 MB.
DBCC SHRINKFILE (VoucherServer_Log, 1);
GO
-- Reset the database recovery model.
ALTER DATABASE VoucherServer
SET RECOVERY FULL;
GO

 

posted @ 2016-01-08 17:39  GerryGe  阅读(284)  评论(0编辑  收藏  举报