python清除資料庫錯誤記錄檔,python資料庫日誌

來源:互聯網
上載者:User

python清除資料庫錯誤記錄檔,python資料庫日誌

# coding=gbk
from encodings import gbk 
import re  
import sys
import  os
import  pyodbc
import traceback
import decimal

 

#串連資料庫
conn = pyodbc.connect('DRIVER={SQL Server};SERVER=192.168.1.43;DATABASE=master;UID=sa;PWD=passwd123!') 

# 擷取cursor對象來進行操作
cursor = conn.cursor()

#清除錯誤記錄檔
#query="select username,userid from dbo.tbluser where username='%s'"  %(uname)
query="EXEC sys.sp_cycle_errorlog"
cursor.execute(query)
conn.commit 

data=cursor.nextset()

while not  data:
 print ('清除43錯誤記錄檔完成!')
 break

#清除代理日誌
#query="select username,userid from dbo.tbluser where username='%s'"  %(uname)
query1="EXEC msdb.dbo.sp_cycle_agent_errorlog"
cursor.execute(query1)
conn.commit 

data1=cursor.nextset()

while not  data1:
 print ('清除43代理日誌完成!')
 break

 


#關閉串連,釋放資源

cursor.close()
conn.close()

com3='pause'
os.system(com3)


python怎查看報錯日誌

test.py的39行,有個對象是個None?意思是你肯定有什麼對象沒有初始化就用了吧。
這個日誌提示的資訊意思最後一行NoneType,你還是查查你的test.py調用的方法是不是不對
你可以在IDLE下逐步執行看看,環境變數是不是有些沒有按照你想象的進行。
 
怎清除SQL資料庫日誌,清除後對資料庫有什影響

教你如何清除SQL日誌

1.開啟查詢分析器,輸入命令
DUMP TRANSACTION 資料庫名 WITH NO_LOG
2.再開啟企業管理器--右鍵你要壓縮的資料庫--所有任務--收縮資料庫--收縮檔案--選擇記錄檔--在收縮方式裡選擇收縮至XXM,這裡會給出一個允許收縮到的最小M數,直接輸入這個數,確定就可以了。

清除Log有兩種方法:

1.自動清除法

開放資料庫選項 Trunc Log on Chkpt,使資料庫系統每隔一段時間自動清除Log。此方法的優點是無須人工幹預,由SQL Server自動執行,並且一般不會出現Log溢滿的情況;缺點是只清除Log而不做備份。

2.手動清除法

執行命令“dump transaction”來清除Log。以下兩條命令都可以清除日誌:

dump transaction with truncate_only
dump transaction with no_log

通常刪除交易記錄中不活躍的部分可使用“dump transaction with trancate_only”命令,這條命令寫進交易記錄時,還要做必要的並發性檢查。SYBASE提供“dump transaction with no_log”來處理某些非常緊迫的情況,使用這條命令有很大的危險性,SQL Server會彈出一條警告資訊。為了盡量確保資料庫的一致性,你應將它作為“最後一招”。

以上兩種方法只是清除日誌,而不做記錄備份,若想備份日誌,應執行“dump transaction database_name to dumpdevice”命令。

清除後對資料庫沒有影響
 

相關文章

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.