Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
CHECKCACHE DestinationTable AGAINST { SourceTable | ( SelectStatement )} [ WITH REPAIR ] [ SKIP { MODIFIED | DELETED }] [ START {Datetime | DatetimeFunction}] [ END {Datetime | DatetimeFunction}]
CHECKCACHE DestinationTable AGAINST SourceTable WITH REPAIR;
CHECKCACHE DestinationTable AGAINST SourceTable WITH REPAIR START '2018-01-01' END '2019-01-01'
CHECKCACHE DestinationTable AGAINST (SELECT Id, Name, DateModified FROM SourceTable) WITH REPAIR START '2018-01-01' END '2019-01-01'
CHECKCACHE DestinationTable AGAINST SourceTable WITH REPAIR SKIP MODIFIED START LAST_MONTH()