Description:
Join up a cluster in-memory table into a local in-memory table.
Syntax:
T.dup()
Note:
The function joins up cluster in-memory table T to generate a local in-memory table.
Parameter:
T |
A cluster in-memory table |
Return value:
An in-memory table
Example:
|
A |
|
1 |
=file("D:/test0.ctx","169.254.121.62:8281") |
Open a cluster file. |
2 |
=A1.open() |
Return a cluster table. |
3 |
=A2.attach(table) |
Retrieve cluster table table. |
4 |
=A3.memory() |
Generate a cluster memory table. |
5 |
=A4.dup() |
Join up the cluster in-memory table to return a local in-memory table.
|