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

In This Topic
    OracleShutdownMode Enumeration
    In This Topic
    Specifies the shutdown mode for the OracleDatabase.Shutdown method that shuts down an Oracle Database instance.
    Syntax
    'Declaration
     
    Public Enum OracleShutdownMode 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
    public enum OracleShutdownMode : System.Enum, System.IComparableSystem.IConvertibleSystem.IFormattable  
    Members
    MemberDescription
    AbortDoes not wait for current calls to complete or users to disconnect from the database. All uncommitted transactions are terminated and are not rolled back.
    DefaultRefuses new connections and waits for connected users to disconnect.
    FinalShuts down the database. This value is not recommended to use when calling the OracleDatabase.Shutdown the first time. This mode should be used only if the database is already closed and dismounted. Otherwise, the method might wait indefinitely. Use this value only for the second OracleDatabase.Shutdown call after the database has been closed and dismounted.
    ImmediateDoes not wait for current calls to complete or open connections to close. All uncommitted transactions are terminated and rolled back.
    TransactionalRefuses new connections and does not allow any new transactions. Waits for active transactions to commit.
    TransactionalLocalRefuses new connections and does not allow any new transactions. Waits for local transactions only to commit.
    Inheritance Hierarchy

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

    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