标签:数据 sp log c r 数据库 sql res bs
USE DATABASENAME;
GO
-- Truncate the log by changing the database recovery model to SIMPLE.
ALTER DATABASE DATABASENAME SET RECOVERY SIMPLE;
GO
-- Shrink the truncated log file to 1 MB.
DBCC SHRINKFILE (DATABASENAME_Log, 1);
GO
-- Reset the database recovery model.
ALTER DATABASE DATABASENAME SET RECOVERY FULL;
GO
标签:数据 sp log c r 数据库 sql res bs
原文地址:http://www.cnblogs.com/weiweictgu/p/3978629.html