Oracle Sort Join

chncaesar發表於2013-11-08

Sort join is the first operation of the “Sort Merge Join”. Before Oracle joins two row sources, both row sources have to be in order. If required, Oracle does a sort. The name is a bit misleading. All it does is a sort on the join key.

 

The “Sort Merge Join” consists of two steps:


  • Sort join operation. Both the inputs are sorted on the join key.
  • Merge join operation. The sorted lists are merged.


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/638844/viewspace-776152/,如需轉載,請註明出處,否則將追究法律責任。

相關文章