![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
i need to check only the elapsed time of the query and not the query output. Is there anyway to do so? |
#3
| |||
| |||
|
#4
| |||
| |||
|
#5
| |||
| |||
|
|
Hi, I need to take the elapsed time / response time / query execution time alone of a particular query. For example, if i try to take the response time of the following query : set timing on select * from table_name; . . 8000 rows selected elapsed time : 2 mins so my log gets filled up with 8000 rows and when i try for more queries, the log if going like 1GB in size. but i need to check only the elapsed time of the query and not the query output. Is there anyway to do so? Can anyone please help me out on this? Thanks in Advance. With Regards, Raja. |
#6
| |||
| |||
|
#7
| |||
| |||
|
|
so, set autotrace traceonly statistics, will execute the query and just gives the elapsed time of the query and not the data ??? |
#8
| |||
| |||
|
|
so, set autotrace traceonly statistics, will execute the query and just gives the elapsed time of the query and not the data ??? |
#9
| |||
| |||
|
|
On Mar 15, 8:48*pm, raja <dextersu... (AT) gmail (DOT) com> wrote: so, set autotrace traceonly statistics, will execute the query and just gives the elapsed time of the query and not the data ??? as Jonathan says, get the elapsed time and the statistics captured during the execution of the query Here's an example of SQL> create table t as * 2 *select rownum as c from dual connect by level <= 10000; Tabella creata. SQL> select count(*) from t; * COUNT(*) ---------- * * *10000 SQL> set timing on; SQL> set arraysize 1000 SQL> set autotrace traceonly statistics SQL> select * from t; Selezionate 10000 righe. Passati: 00:00:00.28 Statistiche ---------------------------------------------------------- * * * * * 8 *recursive calls * * * * * 0 *db block gets * * * * *36 *consistent gets * * * * * 0 *physical reads * * * * * 0 *redo size * * * 90442 *bytes sent via SQL*Net to client * * * * 323 *bytes received via SQL*Net from client * * * * *11 *SQL*Net roundtrips to/from client * * * * * 0 *sorts (memory) * * * * * 0 *sorts (disk) * * * 10000 *rows processed |
![]() |
| Thread Tools | |
| Display Modes | |
| |