SQL Server資料庫日誌清除的兩個方法

iSQlServer發表於2009-10-23
SQL Server資料庫日誌清除的兩個方法:
方法一
一般情況下,SQL資料庫的收縮並不能很大程度上減小資料庫大小,其主要作用是收縮日誌大小,應當定期進行此操作以免資料庫日誌過大。
1、設定資料庫模式為簡單模式:開啟SQL企業管理器,在控制檯根目錄中依次點開microsoft SQL Server--&gtSQL Server組--&gt雙擊開啟你的伺服器--&gt雙擊開啟資料庫目錄--&gt選擇你的資料庫名稱(如論壇資料庫forum)--&gt然後點選右鍵選擇屬性--&gt選擇選項--&gt在故障還原的模式中選擇“簡單”,然後按確定儲存。
2、在當前資料庫上點右鍵,看所有任務中的收縮資料庫,一般裡面的預設設定不用調整,直接點確定
3、收縮資料庫完成後,建議將您的資料庫屬性重新設定為標準模式,操作方法同第一點,因為日誌在一些異常情況下往往是恢復資料庫的重要依據。
方法二
以下為引用的內容:
set nocount on
declare @logicalfilename sysname,
        @maxminutes int,
        @newsize int
use     tablename             
-- 要操作的資料庫名
select  @logicalfilename = 'tablename_log',  
-- 日誌檔名
@maxminutes = 10,               
-- limit on time allowed to wrap log.
        @newsize = 1                  
-- 你想設定的日誌檔案的大小(m)
-- setup / initialize
declare @originalsize int
select @originalsize = size
  from sysfiles
  where name = @logicalfilename
select 'original size of ' + db_name() + ' log is ' +
        convert(varchar(30),@originalsize) + ' 8k pages or ' +
        convert(varchar(30),(@originalsize*8/1024)) + 'mb'
  from sysfiles
  where name = @logicalfilename
create table dummytrans
  (dummycolumn char (8000) not null)

declare @counter   int,
        @starttime datetime,
        @trunclog  varchar(255)
select  @starttime = getdate(),
        @trunclog = 'backup log '
 + db_name() + ' with truncate_only'
dbcc shrinkfile (@logicalfilename, @newsize)
exec (@trunclog)
-- wrap the log if necessary.
while     @maxminutes > datediff
(mi, @starttime, getdate()) -- time has not expired
      and @originalsize =
(select size from sysfiles where name = @logicalfilename)  
      and (@originalsize * 8 /1024) > @newsize  
  begin -- outer loop.
    select @counter = 0
    while  ((@counter < @originalsize / 16) and (@counter < 50000))
      begin -- update
        insert dummytrans values ('fill log')  
        delete dummytrans
        select @counter = @counter + 1
      end   
    exec (@trunclog)  
  end   
select 'final size of ' + db_name() + ' log is ' +
        convert(varchar(30),size) + ' 8k pages or ' +
        convert(varchar(30),(size*8/1024)) + 'mb'
  from sysfiles
  where name = @logicalfilename
drop table dummytrans
set nocount off

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16436858/viewspace-617305/,如需轉載,請註明出處,否則將追究法律責任。

相關文章