sql server開啟read_committed_snapshot--查詢資料庫狀態
select
name,user_access,user_access_desc,
snapshot_isolation_state,snapshot_isolation_state_desc,
is_read_committed_snapshot_on
from
sys.databases
--設定資料庫為single_user模式,減少鎖定時間
alter database dbname set single_user with rollback immediate
alter database dbname set allow_snapshot_isolation on
alter database dbname set read_committed_snapshot on
alter database dbname set multi_user
查詢表使用行數
selectdistinct
a.name ,
b.rows
from
sysobjects a ,
sysindexes b
where a.id =
b.id
and a.type ='u
'and b.rows>
0order
by b.rows desc
sqlserver加欄位鎖表
在設計編輯器中往中間加則會鎖表,在末尾加不會鎖表
SQL Server資料庫優化
sql server日誌檔案過大 大日誌檔案清理方法 網上提供了很多分離資料庫 刪除日誌檔案 附加資料庫 的方法,此方法風險太大,過程也比較久,有時候也會出現分離不成功的現象。下面的方式是不需要做資料庫分離和附加操作的。sql 2008收縮清空日誌方法 1.在sql2008中清除日誌就必須在簡單模式...
SQL SERVER 資料庫優化總結
1.效能優化 開銷比較大 游標 使用不相容的資料型別 無法通過索引,而是全盤掃瞄 where欄位進行函式式或者表示式操作 盡量將操作移動到等號右邊,即不對列進行操作 避免使用 或 is null或is not null in not in 盡量避免在索引過的字元資料中,使用非打頭字母搜尋 表之間的關...
SQL Server 資料庫優化剖析
事件類 stored procedures rpc completed tsql sql batchcompleted 以特殊字元作為篩選條件 4 t sql查詢trace表 a 設定抓取的時候段 b 保持成檔案 然後用下面語句查詢檔案 唯一性高的字段放最前面 select where orderb...