Reply To: How to Detect Modified Pages In SQL Server Tables? Stephen West ~ Modified: 08-Aug-2015 ~ ~ 1 Minute Reading Home › Forums › How to Detect Modified Pages In SQL Server Tables? › Reply To: How to Detect Modified Pages In SQL Server Tables? August 8, 2015 at 11:24 am #437 Score: 0 Stephen WestModerator Karma: 4 pts use following query for the detection of last modification: SELECT [name],create_date,modify_date FROM sys.tables Go