SQL Server資料庫日誌清除的兩個方法
SQL Server資料庫日誌清除的兩個方法:
方法一
一般情況下,SQL資料庫的收縮並不能很大程度上減小資料庫大小,其主要作用是收縮日誌大小,應當定期進行此操作以免資料庫日誌過大。
1、設定資料庫模式為簡單模式:開啟SQL企業管理器,在控制檯根目錄中依次點開microsoft SQL Server-->SQL Server組-->雙擊開啟你的伺服器-->雙擊開啟資料庫目錄-->選擇你的資料庫名稱(如論壇資料庫forum)-->然後點選右鍵選擇屬性-->選擇選項-->在故障還原的模式中選擇“簡單”,然後按確定儲存。
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
方法一
一般情況下,SQL資料庫的收縮並不能很大程度上減小資料庫大小,其主要作用是收縮日誌大小,應當定期進行此操作以免資料庫日誌過大。
1、設定資料庫模式為簡單模式:開啟SQL企業管理器,在控制檯根目錄中依次點開microsoft SQL Server-->SQL Server組-->雙擊開啟你的伺服器-->雙擊開啟資料庫目錄-->選擇你的資料庫名稱(如論壇資料庫forum)-->然後點選右鍵選擇屬性-->選擇選項-->在故障還原的模式中選擇“簡單”,然後按確定儲存。
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 清除SQL Server資料庫日誌SQLServer資料庫
- SQL SERVER日誌清除的兩種方法(轉)SQLServer
- SQL Server 清除資料庫日誌指令碼SQLServer資料庫指令碼
- 清除SQL Server日誌的方法介紹SQLServer
- SQL server資料庫高可用日誌傳送的方法SQLServer資料庫
- SQL Server 檢視資料庫日誌SQLServer資料庫
- 使用fn_dblog解析SQL SERVER 資料庫日誌方法SQLServer資料庫
- ASP建立SQL Server資料庫的兩種方法SQLServer資料庫
- SQL Server 無日誌檔案附加資料庫SQLServer資料庫
- SQL Server無日誌資料庫恢復模式SQLServer資料庫模式
- 清除 SQL SERVER 2005 事務日誌SQLServer
- SQL Server資料庫事務日誌儲存序列SQLServer資料庫
- SQL SERVER 資料庫日誌收縮整理 三種方法軼事分離資料庫而是清空日誌三是截斷日誌SQLServer資料庫
- Sql Server2014資料庫清理日誌SQLServer資料庫
- SQLServer資料庫日誌清理 清除sqlserver2005日誌SQLServer資料庫
- SQL Server 2005資料庫日誌丟失的恢復SQLServer資料庫
- 查詢SQL Server 2005資料庫重做日誌的資訊SQLServer資料庫
- SQL Server 2005無日誌檔案附加資料庫SQLServer資料庫
- SQL Server資料庫事務日誌序列號(LSN)介紹SQLServer資料庫
- 用sql語句dbcc log 檢視SQL Server 資料庫的事務日誌SQLServer資料庫
- SQL Server 收縮事務日誌的方法SQLServer
- 刪除SQL Server日誌的具體方法SQLServer
- SQL Server事務日誌的處理方法SQLServer
- Sql server日誌損壞後的資料恢復(轉)SQLServer資料恢復
- 瀚高資料庫日誌挖掘方法資料庫
- 兩個日誌組未能歸檔之後恢復資料庫資料庫
- MS SQL Server 資料庫備份方法SQLServer資料庫
- SQL Server置疑資料庫解決方法SQLServer資料庫
- 講解刪除SQL Server日誌的具體方法SQLServer
- IIS 日誌匯入到資料庫的方法資料庫
- SQL Server資料庫的簡單實現方法SQLServer資料庫
- SQL Server 收縮日誌SQLServer
- SQL Server 錯誤日誌SQLServer
- rman清除歸檔日誌經典資料
- SQL Server 2000/2005/2008刪除或壓縮資料庫日誌的方法SQLServer資料庫
- 清理資料庫監聽日誌最好方法資料庫
- SQL Server資料庫內容替換方法SQLServer資料庫
- 附加和分離SQL Server資料庫方法SQLServer資料庫