prop

Description

Specifies properties to use for the scan of a stored table.

Syntax

( prop table_name
          ( property_specification ) ...
)
property_specification:
            ( prefetch size )
            ( lru | mru )
             ( parallel degree )

Parameters

table_name

is the table to which the property is to be applied.

Examples

Example 1

select * from t1

( t_scan t1 ) 
( prop t1 
    ( parallel 1 ) 
    ( prefetch 16 ) 
    ( lru ) 
)

Shows the property values used by the scan of t1.

Usage

See also

lru, mru, parallel, prefetch