Administrator
|
You don't have a significant load on Db.
Your waits are primarily on CPU, but this doesn't mean a bad thing. It means processing. So your DB is doing work, but it is not utilizing lots of resources for this.
If you are feeling slowness on your application layer/on frontend, I recommend you to tune your queries.
Especially the ones listed in awr sections : SQL ordered by CPU Time and Sql ordered by Elapsed Time.
Also concantrate on, the execution counts. For some of the sqls, you have lots of executions, which will trigger lots of parses (hard & soft) + which will get unnecessary cpu cycles (if these executions are unnecessary)
any tuning on sql layer, will decrease the slowness that you feel on your application layer.
But as I said, your db is running comfortably..
--db file scattered read is the same type of event as "db file sequential read", except that Oracle will read multiple data blocks. Multi-block reads are typically used on full table scans. The name "scattered read" refers to the fact that multiple blocks are read into database block buffers that are 'scattered' throughout memory.
It doesn't mean only full table scan.. It can also occur for a fast full scan of an index.
But you don't have an issue about that. you only have significant wait on CPU.
|