insert, update, ... 등의 로그를 찾기 위해 유용하게 사용하고 있는 쿼리

 

테이블 이관 작업을 하며 증분 데이터가 있는지 조회할 때 유용하게 사용함

 

SELECT 
	TOP 100
	db_name(st.dbid) DBName,
	qs.total_elapsed_time,
	creation_time,
	last_execution_time,
	text,
	cp.objtype
FROM sys.dm_exec_query_stats qs with(Nolock) cross apply sys.dm_exec_sql_text(qs.plan_handle) st
JOIN sys.dm_exec_cached_plans cp with(Nolock) on qs.plan_handle = cp.plan_handle
WHERE creation_time >= '2023-01-30 13:30:00' -- 2023-01-30 13:30:00 이후 생성된 쿼리
and text like '%insert%'
ORDER BY creation_time ASC
복사했습니다!