--a. 將tempdb資料庫的主資料檔案大小設定為10mb。
alter database tempdb
modify file(
name=tempdev,
size=100 mb)
go--b. 將tempdb資料庫的主資料檔案移動到指定的磁碟分割槽上,並且為其新增乙個資料檔案。
--移動主資料檔案
alter database tempdb modify file
( name='tempdev',
filename ='d:\tempdb.mdf')
--新增次要資料檔案
alter database tempdb add file
( name='tempdata_1',
filename ='d:\tempdb_data_1.ndf')
sql調整tempdb資料庫的檔案屬性
a.將tempdb資料庫的主資料檔案大小設定為10mb。alter database tempdb modify file name tempdev,size 100 mb go b.將tempdb資料庫的主資料檔案移動到指定的磁碟分割槽上,並且為其新增乙個資料檔案。移動主資料檔案 alter da...
收縮 tempdb 資料庫
客戶需求 這是乙個生產環境,在夜深人靜的時候發現 tempdb 已經超過500gb。需求分析 我們知道,如果重啟 sql server,tempdb 會自動重新建立,從而使 tempdb 回歸到初始大小。但是這是生產環境,不允許重啟 sql server。嘗試 直接收縮 tempdb,始終不成功。u...
mysql高速寫資料庫 Tempdb資料庫詳細介紹
一 tempdb簡介 tempdb是sqlserver的系統資料庫一直都是sqlserver的重要組成部分,用來儲存臨時物件。可以簡單理解tempdb是sqlserver的速寫板。應用程式與資料庫都可以使用tempdb作為臨時的資料儲存區。乙個例項的所有使用者都共享乙個tempdb。很明顯,這樣的設...