在查看数据库参数时,发现了一个未曾见过的参数:star_transformation_enabled
查看Oracle性能优化求生指南了解了一下这参数相关的信息:
star query transformation是oracle的一个优化器:星型转换,在oracle8i中引入
STAR_TRANSFORMATION_ENABLED determines whether a cost-based query transformation will be applied to star queries.
这个参数有3个值:
1)FALSE
The transformation will not be applied.
不应用星型转换
2)TRUE
The optimizer will consider performing a cost-based query transformation on the star query.
优化器将会考虑对星型查询执行基于成本的查询转换
3)TEMP_DISABLE
The optimizer will consider performing a cost-based query transformation on the star query but will not use temporary tables in the star transformation.
优化器将考虑对星型查询执行基于成本的查询转换,但不会在星型转换中使用临时表