- Categories:
DATA_METRIC_SCHEDULED_TIME (system data metric function)¶
Returns the timestamp for when a DMF is scheduled to run or the current timestamp if the function is called manually.
You can use this DMF to define custom metrics to measure the freshness of your data or to define incremental metrics in conjunction with DMFs that already exist.
Syntax¶
Arguments¶
None.
Returns¶
The function returns a scalar value with a TIMESTAMP_LTZ data type.
Usage notes¶
Calling this function manually in a SELECT query returns the same value as the CURRENT_TIMESTAMP function.
Example¶
Create a custom data metric function to determine the data freshness on a table in the last hour:
Call the data metric function manually:
The statement returns
Trueif there are no updates to the table in the last hour (60 minutes).The statement returns
Falseif there were updates to the table that took place more than one hour ago.