Temporary objects and access methods

Temporary objects are created by the optimizer in order to process a query. In general, these temporary objects are internal objects and cannot be accessed by a user.

Start of change
Table 1. Temporary object's data access methods
Temporary create objects Scan operations Probe operations
Temporary hash table Hash table scan Hash table probe
Temporary sort list Sorted list scan Sorted list probe
Temporary list List scan N/A
Temporary row number list Row number list scan Row number list probe
Temporary bitmap Bitmap scan Bitmap probe
Temporary index Temporary index scan Temporary index probe
Temporary buffer Buffer scan N/A
Queue N/A N/A
End of change