We have a SQL query which outputs huge amount of data. Our DB is Oracle 11g V2. We are running query on SQL Plus.
We don't want to print the data, but just would like to print query execution time on the screen
In SQL query file, can we write like below:
set timing on
< Select Query >
set timing off
what is the best approach?