Sql Server 2008 收縮日誌

2021-06-19 14:02:38 字數 599 閱讀 5532

-- 收縮日誌

alter database dnname set recovery ****** with no_wait

goalter database dnname set recovery ****** --簡單模式

gouse dnname

godbcc shrinkfile (n'dnname_log' , 11, truncateonly) -- 收縮日誌

-- dbcc shrinkfile (2,notruncate)

-- dbcc shrinkfile (2,11)

go 這裡的dnname_log 如果不知道在sys.database_files裡是什麼名字的話,可以用以下注釋的語句進行查詢

select file_id, name from sys.database_files;

use [master]

goalter database dnname set recovery full with no_wait

goalter database dnname set recovery full --還原為完全模式

go

sql server 2008 資料庫日誌收縮

有時候sql server 2008 資料庫日誌檔案太大,需要收縮釋放硬碟記憶體。首先查詢要收縮日誌檔案的資料庫檔名 查詢結果得到日誌檔案的檔案名叫j4 log use master go alter database a set recovery with no wait goalter data...

徹底解除安裝sql server2008

微軟的開發工具在按裝和解除安裝時都讓人頭疼,只能是裝在c盤,裝在其他盤時最容易出事 在重新按裝的時候一定要把以前的例項解除安裝完才行。要不就會出錯。在解除安裝sql server後,其實還沒有完成,還要把登錄檔資訊完全刪乾淨,下面就將教您徹底刪除sql server登錄檔的方法,供您參考。在解除安裝...

SQLServer2008語句查詢

1 判斷資料庫是否存在 if exists select from sys.databases where name 資料庫名 drop database 資料庫名 2 判斷表是否存在 if exists select from sysobjects where id object id 表名 an...