[bbk2195] 第36集 - Chapter 09-Optimizing Sore Perations(05)
Temporary tablespace里面只有temporary segment,没有 permanent segement.对temporary tablespace的操作,不会更新data dictionary,执行速度会非常快.因为Permanent 类型的segment进行更新的话,都需要更新数据字典.
不同的用户可以使用不同的临时表空间.不同的表空间可以分步在不同的磁盘上;假如不同的用户具有不同的临时表空间,在进行大数据排序的时候,就可以减少同一个磁盘的I/O读写,提高性能.一个segment可以被不同的用户使用,使用里面不同的extent.为不同的用户设置不同的临时表空间.
Temp Space Segments
A temporary space segment:
- Is created by the first sort
- Extends as demands are made on it.(按需求扩充)
- Comprises extents,which can be used by different sorts
- is described in the sort extent pool(SEP)
Operations Requiring Sorts
Avoiding Sort
Performance Manager