SqlServer 錯誤記錄檔切換和查看,sqlserver日誌

來源:互聯網
上載者:User

SqlServer 錯誤記錄檔切換和查看,sqlserver日誌

Sql Server 日誌 和 代理錯誤日一般在執行個體重啟後自動切換,如果執行個體久未重啟,將可能積累太多的日誌,不方便查看.




日誌切換:(需要許可權: sysadmin 固定伺服器角色的成員)

--"Sql Server 日誌"切換exec msdb.dbo.sp_cycle_errorlog--"代理錯誤記錄檔"切換exec msdb.dbo.sp_cycle_agent_errorlog

日誌查看:

--日誌查看exec xp_readerrorlog @FileNum,@Type,@SearchText1,@SearchText2,@StartTime,@EndTime,@order@FileNum : 日誌編號@Type : 查詢類型(1:Sql Server 日誌 ; 2:代理錯誤記錄檔)@SearchText1 : 搜尋文本@SearchText2 : 搜尋文本(與 @SearchText1 為"與"關係)@StartTime : 日誌查詢起始時間@StartTime : 日誌查詢結束時間@order : 時間排序(ASC 或 DESC)

樣本:

--查看當前"Sql Server 日誌"死結exec xp_readerrorlog 0,1,'deadlock victim',NULL,'2015-06-01','2015-06-30','desc'  --查看第二個"Sql Server 日誌" 文本中有 "error" 和 "Server" 的行exec xp_readerrorlog 1,1,'error','Server','2015-06-01','2015-06-30','asc'  --查看當前"代理錯誤記錄檔" 文本中有 "錯誤" 的行exec xp_readerrorlog 0,2,'錯誤',NULL,NULL,NULL,'desc'  



相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.