|
|
INTEGER Id
|
/** Id internal unique integer identifier - read-only - generated by database
(internal - dump and load will generate a new id) */
|
|
|
LOGICAL IsAllocated
|
/** IsAllocated
<b>true</b> if all partitions have a state of Allocated or None
false if any partition have a state of Delayed
Use Allocate() to allocate delayed partitions
Owners that has a single table and does not support delayed partitions implements this
as directly exposing if it has allocated partitions. (all partitions are allocated in synch for a table) */
|
|
|
LOGICAL IsDataEnabled
|
/** IsDataEnabled
default true gives access to partitioned data
set to false to prevent access to partitioned data
(only shared data accessible) */
|
|
|
OpenEdge.DataAdmin.IPartitionMap Partitions
|
/** Partitions IPartitionMap property with all partitions of the tenant
mapped by ISchemaElement (ITable,IIndex,IField) */
|