parallel

Description

Specifies the degree of parallelism for the scan of a stored table.

Syntax

( prop table_name
          ( parallel degree  )
)

Parameters

table_name

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

degree

is the degree of parallelism to use for the scan.

Examples

Example 1

select * from t1

(prop t1
        ( parallel 5 ) 
)

Specifies that 5 worker processes should be used for the scan of the t1 table.

Usage

See also

prop