Reputation: 11
I am trying to run the Snowflake task on the 2nd Tuesday of every month using (USING CRON 0 15 8-14 * 2 UTC). But it is running for all the days between 8-14. Why this behavior? Is this a known issue in snowflake?
Upvotes: 1
Views: 388
Reputation: 9768
there are plenty of online cron generators that will create cron strings for you.
This string should do what you want:
0 0 15 ? 1/1 TUE#2 *
Upvotes: 1