天天看點

sybase自動清除日志

     在圖形界面定位到日志端,彈出屬性框,選擇thresholds标簽頁,編輯裡面的sp_thresholdaction存儲過程,設定在段空間還剩多少的時候就觸發某個語句或存儲過程,這個存儲過程實作DUMP   TRAN的功能,也可用如下語句實作  

  create   procedure   sp_thresholdaction  

  @dbname   varchar(30),  

  @segmentname   varchar(30),  

  @space_left   int,  

  @status   int  

  as    

  dump   tran   @dbname   with   no_log  

  go