- 
Run
explain execution planon DBeaver instead ofexecute SQL query - 
Otherwise, get the execution plan when executing a specified SQL statement:
 
EXPLAIN PLAN FOR
SELECT * FROM TRAINERS;
SELECT * FROM TABLE(DBMS_XPLAN.DISPLAY_CURSOR(NULL, NULL, 'ALLSTATS LAST'));