How can analyze query after generating explain plan ?
Answers were Sorted based on User's Feedback
Answer / chiranjeevi
After generating explan plan the out put of the query
stored in plan_table.from this table if you finding any
table access (full) in output,the query having perfomence
problem.
according you can create the index or primary key or unique
in proper table.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / azuan
example
explain analyze select br_loc,count(insp_id) from insp where
date_create between '2010-07-01 00:00:00' and '2010-07-31
23:59:59' group by br_loc
Is This Answer Correct ? | 1 Yes | 0 No |
What is rowtype?
How to call the function and Procedure in trigger?
How to count the no of records of a table without using COUNT function?
what is ref cursor in pl/sql?
how to insert values like 10:10:00,30:25:00 etc.into table after insert how can i sum the above insert values to get the result as 40:35:00
Can we use ddl statements in stored procedure sql server?
What is the purpose of the partition table?
what is subquery? : Sql dba
Why left join is used in sql?
What is nvarchar in sql?
What is the Query to print out the individual total number of duplicate row in sql.
What does select top 1 do in sql?