Top 50 Oracle Performance Tuning Interview Questions You Must Prepare 27.Jul.2024

Q1. How Do You Increase The Db Cache?

alter table emp cache

Q2. Which Init Parameter You Have To Set To Bypass Parsing?

cursor_sharing=force

Q3. If A Tablespace Has A Default Pct Increase Of Zero What Will This Cause (in Relationship To The Smon Process)?

The SMON process won’t automatically coalesce its free space fragments.

Q4. You Look At The Dba_rollback_segs View And See That There Is A Large Number Of Shrinks And They Are Of Relatively Small Size, Is This A Problem? How Can It Be Fixed If It Is A Problem?

A large number of small shrinks indicates a need to increase the size of the rollback segment extents. Ideally you should have no shrinks or a small number of large shrinks. To fix this just increase the size of the extents and adjust optimal accordingly.

Q5. How Do You Collect Statistics Of A Table?

Analyze table emp compute statistics or analyze table emp estimate statistics.

Q6. How Many Types Of Hits Are There And What Are They?

There are two types of hits, they are

  1. Buffer hit
  2. library hit

Q7. What Are The Types Of Wait Events?

  • cpu time
  • direct path read

Q8. Which Optimizer Is The Best One?

CBO

Q9. You See Multiple Extents In The Temporary Tablespace. Is This A Problem?

As long as they are all the same size this isn’t a problem. In fact, it can even improve performance since Oracle won’t have to create a new extent when a user needs one.

Q10. How Do You Get The Info About Fts?

using v$sysstat

Q11. What Are The Types Of Tunings?

  • CPU Tuning
  • Memory Tuning
  • IO Tuning
  • Application Tuning
  • Database Tuning

Q12. What Is The General Guideline For Sizing Db_block_size And Db_multi_block_read For An Application That Does Many Full Table Sc?

Oracle almost always reads in 64k chunks. The two should have a product equal to 64 or a multiple of 64.

Q13. Where Do You Get The Info Of Library Cache?

v$librarycache

Q14. If A Tablespace Shows Excessive Fragmentation What Are Some Methods To Defragment The Tablespace? (7.1,7.2 And 7.3 Only)

In Oracle 7.0 to 7.2 The use of the ‘alter session set events ‘immediate trace name coalesce level ts#’;’ command is the easiest way to defragment contiguous free space fragmentation. The ts# parameter corresponds to the ts# value found in the ts$ SYS table. In version 7.3 the ‘alter tablespace coalesce;’ is best. If free space isn’t contiguous then export, drop and import of the tablespace contents may be the only way to reclaim non-contiguous free space.

Q15. You See Multiple Fragments In The System Tablespace, What Should You Check First?

Ensure that users don’t have the SYSTEM tablespace as their TEMPORARY or DEFAULT tablespace assignment by checking the DBA_USERS view.

Q16. What Is Performance Tuning?

Making optimal use of system using existing resources called performance tuning.

Q17. What Is An Optimizer?

Optimizer is a mechanism which will make the execution plan of an sql statement.

Q18. How Do You See The Statistics Of A Table?

select num_rows,blocks,empty_blocks from dba_tables where tab_name=’emp’

Q19. If You See Contention For Library Caches How Can You Fix It?

Increase the size of the shared pool.

Q20. What Is The Fastest Query Method For A Table?

Fetch by rowid.

Q21. How Do You Get The Index Of A Table And On Which Column The Index Is?

dba_indexes and dba_ind_columns

Q22. How Do You Collect Statistics Of A User/schema?

exec dbms_stats.gather_schema_stats(scott)

Q23. When Looking At The Estate Events Report You See That You Are Getting Busy Buffer Waits. Is This Bad? How Can You Find What Is Causing It?

Buffer busy waits may indicate contention in redo, rollback or data blocks. You need to check the v$waitstat view to see what areas are causing the problem. The value of the “count” column tells where the problem is, the “class” column tells you with what. UNDO is rollback segments, DATA is data base buffers.

Q24. A Table Space Has A Table With 30 Extents In It. Is This Bad? Why Or Why Not?

Multiple extents in and of themselves aren’t bad. However if you also have chained rows this can hurt performance.

Q25. How Do You See The Trace Files?

using tkprof usage: tkprof allllle.trc llkld.txt

Q26. What Are Some Indications That You Need To Increase The Shared_pool_size Parameter?

Poor data dictionary or library cache hit ratios, getting error ORA-0403@Another indication is steadily decreasing performance with all other tuning parameters the same.

Q27. What Is A Execution Plan?

Its a road map how sql is being executed by oracle db..

Q28. What Are Chained Rows?

These are rows, it sp in multiple blocks.

Q29. What Mainly Database Tuning Contains?

  • Hit Ratios
  • Wait Events

Q30. How Do You Delete Statistics Of An Object?

Analyze table emp delete statistics.

Q31. Explain The Use Of Tkprof? What Initialization Parameter Should Be Turned On To Get Full Tkprof Output?

The tkprof tool is a tuning tool used to determine cpu and execution times for SQL statements. You use it by first setting timed_statistics to true in the initialization file and then turning on tracing for either the entire database via the sql_trace parameter or for the session using the ALTER SESSION command. Once the trace file is generated you run the tkprof tool against the trace file and then look at the output from the tkprof tool. This can also be used to generate explain plan output.

Q32. How Can You Tell If A Tablespace Has Excessive Fragmentation?

If a select against the dba_free_space table shows that the count of a tablespaces extents is greater than the count of its data files, then it is fragmented.

Q33. In A System With An Average Of 40 Concurrent Users You Get The Following From A Query On Rollback Extents:
rollback Cur Extents
r01 11
r02 8
r03 12
r04 9
system 4
yo

No there is not a problem. You have 40 extents showing and an average of 40 concurrent users. Since there is plenty of room to grow no action is needed.

Q34. What Are The Types Of Optimizers?

  • RBO(Rule Based Optimizer)
  • CBO(Cost Based Optimizer)

Q35. When Should You Increase Copy Latches? What Parameters Control Copy Latches?

When you get excessive contention for the copy latches as shown by the “redo copy” latch hit ratio. You can increase copy latches via the initialization parameter LOG_SIMULTANEOUS_COPIES to twice the number of CPUs on your system.

Q36. How Do You Flush The Shared Pool?

alter system flush shared_pool

Q37. How Do You Know Which Session Is Running Long Jobs?

by going v$session_longops

Q38. You See The Following On A Status Report:
redo Log Space Requests 23
redo Log Space Wait Time 0
is This Something To Worry About? What If Redo Log Space Wait Time Is High? How Can You F

Since wait time is zero, no. If wait time was high it might indicate a need for more or larger redo logs.

Q39. Describe Hit Ratio As It Pertains To The Database Buffers. What Is The Difference Between Instantaneous And Cumulative Hit Ratio; Which Should Be Used For Tuning?

Hit ratio is a measure of how many times the database was able to read a value from the buffers verses how many times it had to re-read a data value from the disks. A value greater than 80-90% is good, less could indicate problems. If you take the ratio of existing parameters this will be a cumulative value since the database started. If you do a comparison between pairs of readings based on some arbitrary time span, this is the instantaneous ratio for that time span. Generally speaking an instantaneous reading gives more valuable data since it will tell you what your instance is doing for the time it was generated over.

Q40. If You See The Value For Reloads Is High In The Estate Library Cache Report Is This A Matter For Concern?

Yes, you should strive for zero reloads if possible. If you see excessive reloads then increase the size of the shared pool.

Q41. Discuss Row Chaining, How Does It Happen? How Can You Reduce It? How Do You Correct It?

Row chaining occurs when a VARCHAR2 value is updated and the length of the new value is longer than the old value and won’t fit in the remaining block space. This results in the row chaining to another block. It can be reduced by setting the storage parameters on the table to appropriate values. It can be corrected by export and import of the effected table.

Q42. If You See A Pin Hit Ratio Of Less Than 0.8 In The Estate Library Cache Report Is This A Problem? If So, How Do You Fix It?

This indicates that the shared pool may be too small. Increase the shared pool size.

Q43. What Are The Pre Requsited To Make Use Of Optimizer?

  • Set the optimizer mode
  • Collect the statistics of an object

Q44. Where Can You Get A List Of All Initialization Parameters For Your Instance? How About An Indication If They Are Default Settings Or Have Been Changed?

You can look in the init.ora file for an indication of manually set parameters. For all parameters, their value and whether or not the current value is the default value, look in the v$parameter view.

Q45. What Is The Diff Between Compute And Estimate?

If you use compute, The FTS will happen, if you use estimate just 10% of the table will be read

Q46. You Look At The Dba_rollback_segs View And See That You Have A Large Number Of Wraps Is This A Problem?

A large number of wraps indicates that your extent size for your rollback segments are probably too small. Increase the size of your extents to reduce the number of wraps. You can look at the average traction size in the same view to get the information on traction size.

Q47. What Can Cause A High Value For Recursive Calls? How Can This Be Fixed?

A high value for recursive calls is cause by improper cursor usage, excessive dynamic space management actions, and or excessive statement re-parses. You need to determine the cause and correct it By either relinking applications to hold cursors, use proper space management techniques (proper storage and sizing) or ensure repeat queries are placed in packages for proper reuse.

Q48. How Do You Get The Information Of Specific Session?

v$mystat

Q49. When Looking At V$sysstat You See That Sorts (disk) Is High. Is This Bad Or Good? If Bad, How Do You Correct It?

If you get excessive disk sorts this is bad. This indicates you need to tune the sort area parameters in the initialization files. The major sort are parameter is the SORT_AREA_SIZe parameter.

Q50. Data Dictionary Follows Which Optimizer Mode?

RBO.