⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sqlreader.snapshot_isolation_state.cs

📁 SQL 类Shell代码生成器 对SQL Server 2005,2008生成C#代码
💻 CS
字号:
public enum Snapshot_Isolation_State : byte {
    
    // Hex value is: 00000000
    [Description("Snapshot isolation state is OFF (default). Snapshot isolation is disallowed.")]
    OFF = 0,
    
    // Hex value is: 00000001
    [Description("Snapshot isolation state ON. Snapshot isolation is allowed.")]
    ON = 1,
    
    // Hex value is: 00000002
    [Description(@"Snapshot isolation state is in transition to OFF state. All transactions have their modifications versioned. Cannot start new transactions using snapshot isolation. The database remains in the transition to OFF state until all transactions that were active when ALTER DATABASE was run can be completed.")]
    IN_TRANSITION_TO_ON = 2,
    
    // Hex value is: 00000003
    [Description(@"Snapshot isolation state is in transition to ON state. New transactions have their modifications versioned. Transactions cannot use snapshot isolation until the snapshot isolation state becomes 1 (ON). The database remains in the transition to ON state until all update transactions that were active when ALTER DATABASE was run can be completed.")]
    IN_TRANSITION_TO_OFF = 3,
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -