You have to define all trigger minutes, it looks ugly but it should work:

CREATE OR REPLACE TASK tsk_master
    WAREHOUSE = XS_WH
    SCHEDULE = 'USING CRON 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58  5-17 * * * America/New_York'
    TIMESTAMP_INPUT_FORMAT = 'YYYY-MM-DD HH24'
COMMENT = 'Master task job to trigger all other tasks'
AS call pntinsight_lnd.SP_ACCT_DIM_1();
Answer from Michael Golos on Stack Overflow
🌐
Portaspravida
portaspravida.com › wp-admin › css › colors › modern › fb8zw44f › task-scheduling-hackerrank-snowflake.html
Portaspravida
Task Scheduling | HackerRank Prepare Algorithms Search Task Scheduling Leaderboard Task Scheduling Problem Submissions Leaderboard Discussions Editorial … A Snowflake task in simple terms is a scheduler that can help you to schedule a single SQL or a stored procedure.
🌐
HackerRank
hackerrank.com › challenges › task-scheduling › problem
Task Scheduling | HackerRank
With the first three tasks, the optimal schedule can be: time 1 : task 2 time 2 : task 1 time 3 : task 3 time 4 : task 1 time 5 : task 3 time 6 : task 3
Discussions

Questions i could find for those of y'all planning to give the snowflake OA/interview
🌐 r/csMajors
2
27
June 7, 2023
How do you Hackerrank?
Something has probably gone wrong; I've been sitting OAs for years and haven't gotten a case of plagiarism. What did the company say exactly? More on reddit.com
🌐 r/csMajors
15
124
October 1, 2023
TikTok Summer 2024 OA Assessment Hackerrank
Past posts say it’s very hard. Apparently it’s LC hards. More on reddit.com
🌐 r/csMajors
333
65
August 25, 2023
Maximum Job Scheduling Profit with "n" overlapping jobs
Remove jobs after each overlap run n times. More on reddit.com
🌐 r/leetcode
2
2
March 5, 2024
🌐
GeeksforGeeks
geeksforgeeks.org › dsa › minimum-time-required-to-schedule-k-processes
Minimum time required to schedule K processes - GeeksforGeeks
June 30, 2023 - Your All-in-One Learning Portal: GeeksforGeeks is a comprehensive educational platform that empowers learners across domains-spanning computer science and programming, school education, upskilling, commerce, software tools, competitive exams, and more.
🌐
LeetCode
leetcode.com › discuss › interview-question › 1033329 › snowflake-oa-intern
Snowflake | OA | Intern - Discuss - LeetCode
No. of Questions: 3 Time: 90 mins Platform: HackerRank - Easy question similar to Two Sum - https://leetcode.com/discuss/interview-question/1028649/Snowfl
🌐
LeetCode
leetcode.com › discuss › post › 8260477
Snowflake OA Hackerrank 3 coding question - Discuss - LeetCode
May 17, 2026 - The high-frequency question types ... vowels; Task Scheduling with Constraints, usually solved with sorting plus a priority queue; and String Rotation Check, where the classic trick is checking whether target appears in src + src. For preparation, the article recommends focusing heavily on DP counting problems and state compression, practicing string algorithms like KMP, and doing full 90-minute HackerRank-style mock ...
🌐
Reddit
reddit.com › r/csmajors › questions i could find for those of y'all planning to give the snowflake oa/interview
r/csMajors on Reddit: Questions i could find for those of y'all planning to give the snowflake OA/interview
June 7, 2023 -

Umm... really low effort post but I was preping for the snowflake oa, i really really dont know what im doing btw( for context, gave my first ever GCA yesterday and got a 700) and was looking for resources to study from and found these questions. You can easily find most of them in 3-4 clicks but was making a list for myself so thought might as well share w y'all.

-> Extremely DP heavy with heavy implications on code optimization from what i've heard.

Problems that aren't on leetcode:

  • Remove all the element of B which are present in A (A and B are arrays). Both the array can consist of duplicates and are not sorted.

  • Given two arrays team_a and team_b of n integers each, choose two indices i and j such that the subarrays [team_a[i], team_a[i+1]... team_a[j]] and [team_b[i], team_b[i+1]... team_b[j]] can form a non decreasing sequence. Find the maximum possible value of (j-1+1) i.e. the length of the chosen subarray.

print(get_max_team([3,2,5,3], [10,2,8,4])) # Output: 2

print(get_max_team([2,7,3], [4,2,6])) # Output: 3

print(get_max_team([5,2,4,1], [2,6,2,2])) # Output: 3

  1. Task Scheduling - https://leetcode.com/discuss/interview-question/2775415

  2. Server Selection- https://leetcode.com/discuss/interview-question/2794537

  3. Max Order Value / Max Profit in Job Scheduling - https://leetcode.com/discuss/interview-question/1028649

  4. Non-Overlapping Intervals - https://leetcode.com/discuss/interview-question/2115993

  5. Grid Land / Kth Smallest Instructions - https://leetcode.com/discuss/interview-question/527769

  6. Lexicographically largest array (MEX) - https://leetcode.com/discuss/interview-question/2550995

  7. Minimize Array Value - https://leetcode.com/discuss/interview-question/214601

  8. Maximum Array Value - https://leetcode.com/discuss/interview-question/2551033

  9. Largest Sub Grid - https://leetcode.com/discuss/interview-question/850974

  10. String Patterns - https://leetcode.com/discuss/interview-question/2825744

  11. Same Bit Pair - https://leetcode.com/discuss/interview-question/2835233

  12. https://leetcode.com/discuss/interview-question/1028649/Snowflake-or-OA-or-Maximum-order-volume

  13. https://leetcode.com/discuss/interview-question/527769/Lucid-or-OA-or-Gridland

  14. https://leetcode.com/discuss/interview-question/2146013/snowflake-oa-2022-minimize-array-value

  15. https://leetcode.com/discuss/interview-question/2825744

Problems which are on leetcode:

  • Patching Array - https://leetcode.com/problems/patching-array/

  • Vowel Substring - https://leetcode.com/problems/count-vowel-substrings-of-a-string

  • String Formation - https://leetcode.com/problems/number-of-ways-to-form-a-target-string-given-a-dictionary/

  • Palindromic Subsequences - https://leetcode.com/problems/maximum-product-of-the-length-of-two-palindromic-subsequences/

Problems which are on leetcode and in Neetcode 150:

  • Course Schedule II - https://leetcode.com/problems/course-schedule-ii/

  • https://leetcode.com/problems/binary-tree-inorder-traversal/ bonus point if I could do it in constant space (Basically using Morris Inorder Traversal)

  • Merge Intervals - https://leetcode.com/problems/merge-intervals/

  • Best Interval / Minimum Interval to Include Each Query - https://leetcode.com/problems/minimum-interval-to-include-each-query/

go crazy

Find elsewhere
🌐
Glassdoor
glassdoor.co.in › interviews › software engineer(internship) › snowflake
47 Snowflake Interview Questions & Answers (2025) | Glassdoor
July 22, 2024 - Snowflake interview details: 47 interview questions and 52 interview reviews posted anonymously by Snowflake interview candidates.
🌐
LeetCode
leetcode.com › discuss › interview-question › 3169843 › Snowflake-or-OA-or-All-Questions-or-Summer-Internship-2023-or
Snowflake | OA | All Questions | Summer Internship 2023 | Canada - Discuss - LeetCode
SnowflakeOnline AssessmentCanadaInterview · Task Scheduling - https://leetcode.com/discuss/interview-question/2775415 · Server Selection- https://leetcode.com/discuss/interview-question/2794537 · Max Order Value / Max Profit in Job Scheduling - https://leetcode.com/discuss/interview-question/1028649 ·
🌐
LeetCode
leetcode.com › problems › task-scheduler
Task Scheduler - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
🌐
Telosdesign
telosdesign.it › snowflake-hackerrank-questions.html
We cannot provide a description for this page right now
🌐
LeetCode
leetcode.com › discuss › interview-question › 2775415
SnowFlake OA - Discuss - LeetCode
SnowFlake OA. Only passed several cases... Anyone knows a solution in Python or Java? Or any tips would be appreciated!!
🌐
Brainly
brainly.in › computer science › secondary school
Task scheduling hackerrank solution - Brainly.in
June 16, 2023 - Python code that demonstrates a basic implementation of the task scheduling algorithm using a topological sort:
🌐
HackerRank
hackerrank.com › challenges › task-scheduling › topics
Task Scheduling Topics | Algorithms Question
Join over 30 million developers in solving code challenges on HackerRank, one of the best ways to prepare for programming interviews.
🌐
GitHub
github.com › ningke › tasksched
GitHub - ningke/tasksched: HackerRank's Task Scheduling Problem · GitHub
So we can essentially just sort the tasks by their deadline and complete them in that order. The problem description about breaking up tasks are just there to confuse you. (why?) However, since the problem requires you to do this incrementally, ...
Starred by 9 users
Forked by 2 users
Languages   Python
🌐
MindMajix
mindmajix.com › snowflake-interview-questions
▷ Top 50 Snowflake Interview Questions And Answers *2025
Check out Best Snowflake Interview Questions along with Explanations with ✔️Video Tutorial ✔️Real-time Case Study Questions ✔️FAQ's ✔️Curated by Experts ✔️Download Sample Resumes
Published   April 1, 2026
🌐
1Point3Aces
1point3acres.com › interview › snowflake-software-engineer
Snowflake OA Spring 2023-Software Engineer Intern Test (Toronto) Invitation|snowflake面经|一亩三分地海外面经版
September 21, 2022 - 刚刚做了snowflake的 Spring 2023-Software Engineer Intern Test (Toronto) Invitation OA感觉很难**** 本内容被作者隐藏 ****
🌐
InterviewBit
interviewbit.com › snowflake-interview-questions
Top Snowflake Interview Questions and Answers (2025) - InterviewBit
In simple terms, Snowpipe is a continuous data ingestion service provided by Snowflake that loads files within minutes as soon as they are added to a stage and submitted for ingestion. Therefore, you can load data from files in micro-batches (organizing data into small groups/matches), allowing users to access the data within minutes (very less response time), rather than manually running COPY statements on a schedule to load large batches.