USE MESWIPDB;
GO
-- Truncate the log by changing the database recovery model to SIMPLE.
ALTER DATABASE MESWIPDB
SET RECOVERY SIMPLE;
GO
-- Shrink the truncated log file to 1 MB.
DBCC SHRINKFILE (MESWIPDB_Log, 1);
GO
-- Reset the database recovery model.
ALTER DATABASE MESWIPDB
SET RECOVERY FULL;
GO
沒有留言:
張貼留言