How can I see the execution plan in Oracle NoSql Database?

105 Views Asked by At

Like "Explain Plan" feature in the Oracle RDBMS to see the query plan of the sql queries, What is the keyword to get the query plan of the queries in Oracle Nosql database.

1

There are 1 best solutions below

0
Arun Sai Mustyala On

use keyword show query to retrieve the query plan of the queries in NoSql Oracle database.

Example:

show query select fname, lname from employe where fname='foo';