在Linux下進行所有檔案的批次修改內容
1. 搜尋符合條件的所有檔案
find /home/test/www/ -name \*.js -exec grep -l alienradar {} \;
2. 進行所有符合搜尋條件的檔案內容修改
find /home/test/www/ -name \*.js -exec grep -l alienradar {} \; | xargs -i sed -i 's/document\.write.*Keyboard\.js.*//g' {}
手動清除Replication的distribution記錄
執行以下SQL,會清除在distribution資料庫中的所有紀錄,
EXEC dbo.sp_MSdistribution_cleanup @min_distretention = 0, @max_distretention = 0
如果清除時發生下以錯誤時,
以下列使用者的身分執行: NT AUTHORITY\SYSTEM。無法移除目錄 '\\dl380x1\ReplData\unc\DL380W1_ITUSE_ARTIE_TEST\20100726150914\'。請檢查 xp_cmdshell 的安全性內容並關閉其他可能在存取這個目錄的程序。 [SQLSTATE 42000] (錯誤 20015). 步驟失敗。
首先要先開啟xp_cmdshell:
-- To allow advanced options to be changed. EXEC sp_configure 'show advanced options', 1 GO -- To update the currently configured value for advanced options. RECONFIGURE GO -- To enable the feature. EXEC sp_configure 'xp_cmdshell', 1 GO -- To update the currently configured value for this feature. RECONFIGURE GO
再來檢查存放snapshot的目錄權限:
這裡要注意的是,權限的部分是要設定共用的部分而非安全性的部分,
共用的使用權限中,帳號要開啟完全控制。
壓縮記錄檔(ldf)沒有效果的狀況
該資料庫有設定發行集,需要重新匯入資料,但是不想讓異動記錄寫入distribution DB,
關閉replication log read agent可以不讓異動記錄進入distribution DB,
但是異動記錄還是會寫入該資料庫的ldf,
重新啟動replication log read agent後,在ldf內的異動資料還是會被寫入distribution DB。
該資料庫有設定發行集,無法使用truncate來清空資料,只能使用delete進行資料刪除,
但是delete會將所有的異動都寫入log file,造成ldf增長的非常大,
此時嘗試使用壓縮的功能來釋放ldf空間,卻沒有任何效果,
原因在於該資料庫處於replication的狀態,
使用select * from sys.databases這個SQL指令可以看到該資料庫的log_reuse_wait不是0,
log_reuse_wait_desc的值是REPLICATION,
最後只好刪除發行集再進行資料匯入,然後再壓縮ldf。
SQL Server 2005 SSMS出現Sqlwb.exe錯誤而關閉
狀況:
使用SQL Server 2005的SSMS進行SQL語法查詢時,
出現Sqlwb.exe的錯誤而導致整個SSMS關閉。
解法:
到這個目錄下,
%SystemDrive%\Documents and Settings\
刪除shell這個目錄,再重新執行SSMS即可!
apache child pid exit signal File size limit exceeded error
網頁出現zero size的錯誤訊息,
apache error log出現[notice] child pid 23406 exit signal File size limit exceeded (25),
這是因為程式所要寫入的檔案超過2G所導致,
先找一下超過2G size的檔案,find / -size +1000000k
找到後進行備份/清空/壓縮。