标签:方法 recover lte tab cat 环境 base recovery step
-- Truncate the log by changing the database recovery model to SIMPLE. ALTER DATABASE [DB] SET RECOVERY SIMPLE; GO -- Shrink the truncated log file to 1 MB. DBCC SHRINKFILE (DB_Log, 100); GO -- Reset the database recovery model. ALTER DATABASE [DB] SET RECOVERY FULL; GO
标签:方法 recover lte tab cat 环境 base recovery step
原文地址:http://www.cnblogs.com/blossomwei/p/6923009.html