dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleLoaderOptions Enumeration

In This Topic
    OracleLoaderOptions Enumeration
    In This Topic
    Allows configuring behavior of the OracleLoader class.
    Syntax
    'Declaration
     
    Public Enum OracleLoaderOptions 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
    public enum OracleLoaderOptions : System.Enum, System.IComparableSystem.IConvertibleSystem.IFormattable  
    Members
    MemberDescription
    DefaultDefault behavior.
    DisableIndexesDisable table indexes when loading data. Applied only when array binding is used for loading data.
    DisableTriggersDisable table triggers when loading data. Applied both for array binding and direct path loading.
    KeepConstraintsDon't disable constraints. By default, constraints are disabled when using array binding or when using direct path to load data into a specified partition of a partitioned table.
    KeepExternalForeignKeysDon't disable foreign keys to other tables. By default, constraints are disabled when using array binding or when using direct path to load data into a specified partition of a partitioned table.
    KeepPrimaryKeysDon't disable primary keys keys. By default, constraints are disabled when using array binding or when using direct path to load data into a specified partition of a partitioned table.
    KeepSelfReferencedForeignKeysDon't disable foreign keys to the same table (self-referencing foreign keys). By default, constraints are disabled when using array binding or when using direct path to load data into a specified partition of a partitioned table.
    NoLoggingDisables table logging when loading data. Applied only when array binding is used for loading data.
    UseArrayBindingUse array binding for loading data even when direct path interface can be used.
    UseInternalTransactionUse a transaction for loading data. Applied only when array binding is used for loading data.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Devart.Data.Oracle.OracleLoaderOptions

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also