HOW TO TUNE ORACLE SQL QUERIES GIVE ME STEP BY SREP
Answer / s.panda
Step1: At first we need to identified the high load SQLs or
top SQLs that are responsible for performance problem or in
another word the sql that consume application workload and
system resources. We can easily identify them by reviewing
past SQL execution history available in the system.
Step 2: Now generate execution plan of those high load sql
statements and verify that the execution plans produced by
the query optimizer for these statements perform reasonably.
Step 3: Implement corrective actions to generate better
execution plans for poorly performing SQL statements. While
taking corrective actions there is many considerations.
Is This Answer Correct ? | 3 Yes | 1 No |
What are the types of join and explain each?
How do I count rows in sql?
i have a table with fields(id,name,accnt_type)and in account type are FD,SAVING,RD. Write a query to get How many number of People are in each type of Account?
Describe different types of general function used in sql?
What is a 'instead of trigger'?
What is pls integer?
What are views in sql?
Define select, insert, create, delete, update, drop keywords
What is indexes?
Can procedure in package be overloaded?
What are the most important ddl statements in sql?
what is difference between "Primary key" and "Unique key"?