Class ALTER_TABLE

Object
ALTER_TABLE

public class ALTER_TABLE extends Object
Alter table action to be taken on a CTTable.Alter(int) call
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Force rebuild of all Full Text indexes
    static final int
    Force full table rebuild, regardless of table changes.
    static final int
    Force hot alter table
    static final int
    Force rebuild of all indexes, regardless of table changes.
    static final int
    Use the existing transaction mode even during the alter
    static final int
    Check for table changes before altering the table and perform only the changes required.
    static final int
    Purge duplicate record
    static final int
    Truncate the table - forces FULL alter
    static final int
    force V8DELFLD during alter table
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • NORMAL

      public static final int NORMAL
      Check for table changes before altering the table and perform only the changes required.
      See Also:
    • INDEX

      public static final int INDEX
      Force rebuild of all indexes, regardless of table changes.
      See Also:
    • FULL

      public static final int FULL
      Force full table rebuild, regardless of table changes.
      See Also:
    • FTI

      public static final int FTI
      Force rebuild of all Full Text indexes
      See Also:
    • HOT

      public static final int HOT
      Force hot alter table
      See Also:
    • PURGEDUP

      public static final int PURGEDUP
      Purge duplicate record
      See Also:
    • TRUNCATE

      public static final int TRUNCATE
      Truncate the table - forces FULL alter
      See Also:
    • KEEPTRAN

      public static final int KEEPTRAN
      Use the existing transaction mode even during the alter
      See Also:
    • V8DELFLD

      public static final int V8DELFLD
      force V8DELFLD during alter table
      See Also:
  • Constructor Details

    • ALTER_TABLE

      public ALTER_TABLE()