what are the tunnig tables you used for tuning a query and
tell me some of coloumns in that tuning tables?
Answer Posted / vyshak
select * from
(select sql_id,sql_fulltext,elapsedtime
from v$sql
order by elapsedtime desc)
where rownum<5;
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
Can we insert data into materialized view?
What is the difference between instead of trigger and after trigger?
What does the hierarchical profiler does?
Which is faster subquery or join?
What does select * from mean in sql?
What does cursor do in sql?
how can we find the number of rows in a table using mysql? : Sql dba
how to get a list of indexes of an existing table? : Sql dba
how to create a new table in mysql? : Sql dba
What is the usage of nvl function?
How do I view a procedure in sql?
What is the difference between sql and t sql?
What is the difference between microsoft sql and mysql?
How do I add a primary key to a table?
What is a primary key called that is made up of more than one field?