InterviewSolution
Saved Bookmarks
| 1. |
Which table stores information about the threads executing within the server?(a) PROCESS(b) PROCESSLIST(c) LIST(d) THREADSLIST |
|
Answer» Right answer is (b) PROCESSLIST Easiest explanation: The table ‘PROCESSLIST’ is responsible for storing all the information about the threads executing within the server. The other tables are not valid tables in the INFORMATION_SCHEMA. |
|