T.pseudo(T ’ ,…)

Read(782) Label: pseudo table, segmentation,

Description:

Segment a pseudo table according to the segmentation way of another.

Syntax:

T.pseudo(T’,…)

Note:

The function sets up pseudo table T’,…, which should be a pseudo table object from which a multicursor can be obtained, according to pseudo table T. The former is segmented the same way as the latter.

 

Only supported by esProc Enterprise Edition.

Parameter:

T

A segmented pseudo table object.

T’

A pseudo table object.

Example:

 

A

 

1

=create(file).record(["emp1.ctx"])

 

2

=pseudo(A1,3)

Generate a pseudo table object having 3 subcursors from a composite table.

3

=create(file).record(["emp2.ctx"])

 

4

=pseudo(A3,5)

Generate a pseudo table object, with the number of subcursorss being 5.

5

=A2.pseudo(A4)

Segment pseudo table A4 the same way as pseudo table A2.

6

=A4.cursor()

Get a multicursor having 3 subcursors from pseudo table A4.