Oracle Trouble Shooting Question and Answers
5. | What is cost based optimizer? |
---|---|
|
|
6. | Which parameters affect the behavior of merge join? |
---|---|
The behavior of merge join is influenced by the initialization parameters:
|
|
7. | Why UNION ALL faster than UNION? |
---|---|
The UNION operation removes redundancy while UNION ALL does not; therefore, the UNION operation needs to perform sort. As a result, UNION ALL performs better as it does not need to perform any sort. | |
8. | How can you get more details about the blocking session? |
---|---|
You can use the v$session or gv$session view in Real Application Clusters (RAC) environment to get the session information. | |