Làm việc như một database administrator, tôi muốn được nhận cảnh báo (qua email chẳng hạn) càng nhiều càng tốt về các sự kiện xảy ra bên tro...
Blog đang chỉnh sửa
Làm việc như một database administrator, tôi muốn được nhận cảnh báo (qua email chẳng hạn) càng nhiều càng tốt về các sự kiện xảy ra bên tro...
Find all Temporary tables in Tempdb SELECT * FROM tempdb.INFORMATION_SCHEMA.tables ORDER BY TABLE_NAME Tham khảo: http://www.sqlviet.co...
Đ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...
Nhiều người nghĩ rằng Table Variable được lưu trên memory, thật ra nó được lưu trong Tempdb. Ta có thể chứng minh điều này bằng cách dùng ...
This is a free tool, we use it for creating pressures to SQL Server, and testing Performance. As the screenshot below, I opened 200 sessio...
Tempdb is a factor that we could not forget when troubleshooting performance issue on SQL Server. Here is some my notes: Set the recover...
The T-SQL script to find queries using Tempdb, as a Dba, we should log the information here after each one minute: SELECT ssu.session_id, ...
Đoạn script phát hiện tranh chấp Tempdb Select session_id, wait_type, wait_duration_ms, blocking_session_id, resource_description, R...
http://blog.sqlauthority.com/2007/12/17/sql-server-t-sql-script-to-find-details-about-tempdb/