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