InterviewSolution
Saved Bookmarks
| 1. |
The line used to turn on the event scheduler is ______________(a) event_scheduler = ON(b) eventscheduler = ON(c) event_scheduler_ON(d) events_scheduler_ONThis question was posed to me in exam.I need to ask this question from Putting PHP to Work topic in division MySQL Programs Using Perl DBI and PHP of MySQL |
|
Answer» CORRECT option is (a) event_scheduler = ON The best I can explain: The LINE ‘event_scheduler = ON’ is put in the option file that the server READS. The event scheduler does not run by default. It must be turned on if events are to used in the DATABASE. |
|