SQL磁碟清理

2021-10-05 13:12:05 字數 1089 閱讀 7057

-- 清理磁碟

--1.檢視資料庫總空間,已用空間,未用空間,使用率

use 圖書借閱資料庫

goselect a.name as 邏輯檔名, size/

128[totalspace檔案大小(兆)],

fileproperty(a.name,

'spaceused')/

128[usedspace已用空間(兆)],

size/

128- fileproperty(a.name,

'spaceused')/

128[未用空間(兆)],

fileproperty(a.name,

'spaceused')*

100.0

/size [使用率(%)

]from sys.database_files a cross

join

(select recovery_model_desc, log_reuse_wait,log_reuse_wait_desc,is_auto_shrink_on from sys.

databases

where name=db_name())b

where

type=1

select

[name]

,[log_reuse_wait_desc]

from master.sys.

databases

where

[name]

='圖書借閱資料庫'

dbcc shrinkfile(logicalname=

'圖書借閱資料庫'

)

-- 空間占用情況

use 學生選課資料庫

gosp_spaceused @updateusage

=n'true'

dbcc freeproccache

dbcc freesessioncache

dbcc freesystemcache(

'all'

)dbcc dropcleanbuffers

mac磁碟清理

參考 作者karthus 關注 2016.12.13 15 22 字數 652 閱讀 545 喜歡 21 此文章僅適用於適用於使用xcode的開發者。長期不清理xcode中的一些檔案你會發現自己的mac硬碟越來越小,而且是這個其他佔了絕大部分的硬碟,在網上搜尋了很多辦法都沒找到如何清理這些其他 後來...

linux磁碟清理

釋放linux磁碟空間的一種方法 1 用df 檢查發現 根目錄可用空間為0 root df h df i檢視inode du 檔名 檢視檔案占用空間 2 用du檢查發現 各目錄占用的空間都很少,有約3g的空間莫名其妙地丟了。root du m max depth 1 sort gr www.2cto...

Iinux伺服器磁碟清理

df h 檢視磁碟 常用維護方法,清理磁碟 du h max depth 1 檢視當前目錄 哪個檔案占用最大 du sh 檢視當前目錄下的檔案 目錄大小 查詢大檔案和大目錄,手動rm rf 檔名刪除 清除磁碟,清楚日誌 cp dev null nohup.out 置空日誌 清理磁碟 1.apt清理快...