InterviewSolution
Saved Bookmarks
| 1. |
Which statement is used to check the status of the event scheduler at runtime?(a) SHOW STATUS OF ‘event_scheduler’(b) SHOW VARIABLES OF ‘event_scheduler’(c) SHOW STATUS LIKE ‘event_scheduler’(d) SHOW VARIABLES LIKE ‘event_scheduler’I had been asked this question in examination.Asked question is from Events in chapter Stored Programs of MySQL |
|
Answer» RIGHT choice is (d) SHOW VARIABLES LIKE ‘event_scheduler’ Best explanation: In MySQL, in order to check the status of the event scheduler at runtime, the statement: SHOW VARIABLES LIKE ‘event_scheduler’; is USED. The event_scheduler is a system variable. |
|