Enum Class OracleTableSize
- All Implemented Interfaces:
Serializable,Comparable<OracleTableSize>,Constable
Specifies the
Oracle extent sizing for the table.
Rose conversion note: Corresponds to Class Specification -> Windchill -> TableSize.
Supported API: true
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSize does matter, and this table's gonna be huge.Indicates that the table is expected to have more rows than a "medium" table.Indicates that the table is expected to have more rows than a "small" table.Indicates that the table is expected to have a "small" number of rows.Size doesn't matter... -
Method Summary
-
Enum Constant Details
-
TINY
Size doesn't matter... Tiny tables are intially 8k in size and grow by by 8k.Rose conversion note: Corresponds to
TINY.Supported API: true
-
SMALL
Indicates that the table is expected to have a "small" number of rows. Small tables are initially 20k in size and grow by 20k.Rose conversion note: Corresponds to
SMALL.Supported API: true
-
MEDIUM
Indicates that the table is expected to have more rows than a "small" table. Medium tables are initially 50k in size and grow by 50k.Rose conversion note: Corresponds to
MEDIUM.Supported API: true
-
LARGE
Indicates that the table is expected to have more rows than a "medium" table. Large tables are initially 100k in size and grow by 100k.Rose conversion note: Corresponds to
LARGE.Supported API: true
-
HUGE
Size does matter, and this table's gonna be huge. Huge tables are initially 1m in size and grow by 1m.Rose conversion note: Corresponds to
HUGE.Supported API: true
-