help_outline FAQ chevron_right FAQ chevron_right Detail

How do I make the assistant run daily at exactly 13:00?

assistant run daily exactly make case

Use the query: SELECT CASE WHEN DATEPART(HOUR, GETDATE()) = 13 THEN 1 ELSE 0 END. Note: You must run the assistant every 60 minutes for this to work reliably.