InterviewSolution
Saved Bookmarks
| 1. |
What is slow query log in MySQL? |
|
Answer» In general slow query, the log is BASICALLY used in Mysql for the determination of which DATABASE queries will take a long duration to run. Moreover, a slow query log in MySQL simplifies that operations in the context of efficient and time-consuming queries. In order to enable the slow query log the command- GET global slow_query_log – ‘ON’; is used Also Read: PostgreSQL interview QUESTIONS |
|