Scheduled execution
Stored procedures can be scheduled to execute automatically with the privileges of the trigger definer. You can use this to automate various tasks, like logging database activity, revoking privileges, creating roles, or loading data.
Enabling and disabling scheduling
Scheduling can be toggled at the database level with the EnableStoredProcedureScheduler configuration parameter:
You can toggle an individual schedule ENABLE_TRIGGER, or disable it by dropping the schedule's associated trigger.
Scheduling a stored procedure
The general workflow for implementing scheduled execution for a single stored procedure is as follows:
-
Create a stored procedure.
-
Create a schedule. A schedule can either use a list of timestamps for one-off triggers or a
cron
expression for recurring events. -
Create a trigger, associating it with the stored procedure and trigger.
-
(Optional) Manually execute the trigger to test it.
One-off triggers
One-off triggers run a finite number of times.
The following example creates a trigger that revokes privileges on the customer_dimension table from the user Bob after 24 hours:
-
Create a stored procedure to revoke privileges from Bob:
-
Create a schedule with a timestamp for 24 hours later:
-
Create a trigger with the stored procedure and schedule:
Recurring triggers
Recurring triggers run at a recurring date or time specified by a cron
expression:
The following example creates a weekly trigger that logs to the USER_COUNT table the number of users in the database:
-
Create the table to log the user counts:
-
Create the stored procedure to log to the table:
-
Create the schedule for 12:00 AM on Sunday:
-
Create the trigger with the stored procedure and schedule:
Viewing upcoming schedules
Schedules are managed and coordinated by the Active Scheduler Node (ASN). If the ASN goes down, a different node is automatically designated as the new ASN. To view scheduled tasks, query SCHEDULER_TIME_TABLE on the ASN.
-
Determine the ASN with ACTIVE_SCHEDULER_NODE:
-
On the ASN, query SCHEDULER_TIME_TABLE: