Measures the amount of change in the data distribution since update statistics last ran. Specifically, it measures the number of inserts, updates, and deletes that have occurred on the given object, partition, or column, and helps you determine if invoking update statistics would benefit the query plan.
datachange(object_name, partition_name, column_name)
select datachange("authors", "author_ptn", "au_id")
select datachange("authors", "au_ptn", null)
Any user can execute datachange.