RelationalDBDesign
SiteMap
Advanced Tuning
SQL Tuning
Perform Tuning
Tuning Instance
Tuning Basics
External Environment
Oracle Instance
«Prev
Next»
Tuning Oracle Instance
Instance Tuning
Main Components SGA
Shared Pool Tuning
Oracle Library Cache
Query Dictionary Cache
Global Area Session
Data Buffer Cache
Redo Log Buffer
Instance Tuning Conclusion
Shared Pool Tuning
Shared Pool Optimal Tuning
Pin Packages Shared Pool
Reserved Size
Identifying High Use Packages
IIdentify Swapped out Items
Statistics gathered from Startup
Detecting Library Cache Contention
Library Cache Statistics
Reuse SQL Library Cache
Tuning Shared Pool
Data Buffer Cache
Tuning Data Buffer
Calculate buffer Hit Ratio
Non- Full table Scan
Full table Scan
Impact Adding Data Buffers
Predict Amount Spare Memory
Create multiple Buffer Pools
Configure Multiple Buffer Pools
Size Buffer Pools
Monitor Buffer Cache
Use Table Caching
Databuffer Cache Conclusion
Redo Log Tuning
Oracle Redo Logs
Tuning Techniques
View RedoLog Activity
Redo Log Parameters
RedoLog Wait Statistics
RedoLogs Online Size Determination
size Archived RedoLog FileSystem
Tune redo Log Operations
log_checkpoint_interval
RedoLog Tuning Conclusion
Sorting Operations
Oracle Sorting Basics
Sorting Parameters
SQL Join Operations
Monitor for Disk Sorts
Sorting Direct Writes
Temporary Sorting Space
Monitoring Temp Tablespace
Remove SQL Sorts
Sorting Operations Conclusion
Intro Tuning Oracle Locks
Oracle Locking Scheme
Shared Exclusive Locks
Oracle Lock Modes
Database Deadlocks
Preventing Database Deadlocks
Dictionary Lock Views
Lock Utility Scripts
DBMS Lock Package
Tuning Oracle Locks Conclusion
Oracle Shared Pool Tuning - Quiz
Each question is worth one point. Select the best answer for each question.
1.
What is one way you can minimize the reparsing of SQL statements?
Please select the best answer.
A.
Make all SQL use literal variables
B.
Write SQL statements to execute correlated subqueries
C.
Try to write all SQL so that it can be shared by multiple tasks.
D.
Try to make all SQL execute through ODBC
2.
Preventing SQL reloads is a tuning strategy you would use for which area of the SGA?
Please select the best answer.
A.
Session memory
B.
The library cache
C.
The redo log buffer
D.
The data dictionary cache
3.
A low pin hit ratio indicates that you should:
Please select the best answer.
A.
Increase the db_block_size parameter
B.
Flush the library cache of non-reusable SQL statements
C.
Increase the number of packages pinned in the shared pool
D.
Increase the shared_pool_size init.ora parameter
4.
Cached cursors on the server can result in:
Please select the best answer.
A.
More memory usage in the PGA
B.
More memory usage in the UGA
C.
Memory being freed up in the SGA
D.
Memory being freed up in the UGA
Correct answers:
Your Score: 0
Submit
Quiz Explanation
Oracle Instance