Enum Class OracleTableSize

java.lang.Object
java.lang.Enum<OracleTableSize>
com.ptc.windchill.annotations.metadata.OracleTableSize
All Implemented Interfaces:
Serializable, Comparable<OracleTableSize>, Constable

public enum OracleTableSize extends Enum<OracleTableSize>
Specifies the Oracle extent sizing for the table.

Rose conversion note: Corresponds to Class Specification -> Windchill -> TableSize.

Supported API: true

  • Enum Constant Details

    • TINY

      public static final OracleTableSize 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

      public static final OracleTableSize 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

      public static final OracleTableSize 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

      public static final OracleTableSize 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

      public static final OracleTableSize 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