In oracle sql plus, while doing performance testing, I would do
set autotrace traceonly:
which would display the query plan and statistics without printing the actual results. Is there anything equivalent in mysql?
|
In oracle sql plus, while doing performance testing, I would do
which would display the query plan and statistics without printing the actual results. Is there anything equivalent in mysql? |
|||
|
|
|
No, there's no equivalent available in MySQL, at least not in the community edition. MySQL does not implement the kind of "instrumentation" that Oracle has in its code; so there's no equivalent to an event 10046 trace. You can preface your SELECT statement with the You can also enable the slow query log on the server, to capture SQL statements that take longer than |
||||
|
|
|
To get the query plan, just add
It also estimates the number of rows to be read if that's what statistics you're talking about. |
|||
|
|