Answers for "How to check event scheduler status mysql"

SQL
0

How to check event scheduler status mysql

1. MySQL, we can enable the event scheduler by following query:
SET GLOBAL event_scheduler = ON;
2. Similarly, to turn off the scheduler:
SET GLOBAL event_scheduler = OFF;
Posted by: Guest on November-24-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language