I love to research SQL Server Internal and SQL Server Architect. Today I found out the knowledge about Server Message Block, that is useful....
Blog đang chỉnh sửa
I love to research SQL Server Internal and SQL Server Architect. Today I found out the knowledge about Server Message Block, that is useful....
CREATE TABLE #VLF_temp (FileID varchar(3), FileSize numeric(20,0), StartOffset bigint, FSeqNo bigint, S...
Đoạn script để monitor tempdb, nếu là dba thì nên cài đặt để được inform mỗi ngày. Dựa vào thông tin này sau một ngày busy của production s...
http://blog.sqlxdetails.com/transaction-log-myths/ Đọc thêm: http://technet.microsoft.com/en-us/library/ms189085(v=sql.105).aspx BACKUP...
http://blog.sqlxdetails.com/transaction-log-truncate-why-it-didnt-shrink-my-log/
We can use the following SQL Statement: DBCC LOGINFO Each record represent one VLF 2 means Active, 0 is inactive. Please notice t...
Có 1 tác giả chia sẻ SQL Server chạy chậm, tìm hiểu các transactions thì thấy hầu hết là wait type RESOURCE_SEMAPHORE. Chứng minh đang có Me...
Đoạn script sau đây sử dụng sys.dm_exec_cached_plans để hiển thị số lượng cached plans và dung lượng tính theo MB: SELECT count(*) AS ...
The buffer pool contains and manages SQL Server’s data cache. Information on its contents can be found in the sys.dm_os_buffer_descriptors ...
Khi SQL thao tác dữ liệu, nó sẽ load những trang dữ liệu (data page) lên vùng nhớ gọi là Buffer Pool. Có 1 DMV cho ta biết thông tin Buffe...