Question:
Is it possible to manually set the minute on an hourly scheduled job within Vault?
Answer:
The minute can be manually set for an hourly scheduled job within Vault by utilizing the Metadata Definition Language (MDL).
ALTER Job {{job API name}} (
schedule('hourly'),
hourly_interval(1),
time('0:{{minute}}')
);
Example:
ALTER Job crm_pull_recurring_inquiries__v (
schedule('hourly'),
hourly_interval(1),
time('0:15')
);
Related Documentation:
Vault Help Documentation: Execute MDL Script
Vault Help Documentation: Metadata Definition Language
Send us your feedback: We're always looking for feedback to help improve our Knowledge Base! Please let us know if this article was helpful or provide feedback on how we can improve your experience here.