sqlreader.snapshot_isolation_state.jsl

来自「SQL 类Shell代码生成器 对SQL Server 2005,2008生成」· JSL 代码 · 共 26 行

JSL
26
字号
public enum Snapshot_Isolation_State {
    
    // Hex value is: 00000000
    /** @attribute Description("Snapshot isolation state is OFF (default). Snapshot isolation is disallowed.")*/
    OFF(0),
    
    // Hex value is: 00000001
    /** @attribute Description("Snapshot isolation state ON. Snapshot isolation is allowed.")*/
    ON(1),
    
    // Hex value is: 00000002
    /** @attribute Description("Snapshot isolation state is in transition to OFF state. All transactions have the" +
"ir modifications versioned. Cannot start new transactions using snapshot isolati" +
"on. The database remains in the transition to OFF state until all transactions t" +
"hat were active when ALTER DATABASE was run can be completed.")*/
    IN_TRANSITION_TO_ON(2),
    
    // Hex value is: 00000003
    /** @attribute Description("Snapshot isolation state is in transition to ON state. New transactions have thei" +
"r 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 w" +
"as run can be completed.")*/
    IN_TRANSITION_TO_OFF(3)
}

⌨️ 快捷键说明

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