Class CompatibilitySchema.CurConfig
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.syscurconfigs (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
Contains an entry for each current configuration option. Also, this view contains four entries that describe the configuration structure. syscurconfigs is built dynamically when queried by a user. For more information, see sys.sysconfigures (Transact-SQL).
important
This SQL Server 2000 system table is included as a view for backward compatibility. We recommend that you use the current SQL Server system views instead. To find the equivalent system view or views, see Mapping System Tables to System Views (Transact-SQL). This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.
See sys.syscurconfigs.
[Table(Schema = "sys", Name = "syscurconfigs", IsView = true)]
public class CompatibilitySchema.CurConfig
- Inheritance
-
CompatibilitySchema.CurConfig
- Extension Methods
Properties
Comment
Explanation of the configuration option.
[Column("comment")]
[NotNull]
public string Comment { get; set; }
Property Value
Config
Configuration variable number.
[Column("config")]
[Nullable]
public short? Config { get; set; }
Property Value
Status
Bitmap indicating the status for the option. Possible values include the following:
0 = Static. Setting takes effect when the server is restarted.
1 = Dynamic. Variable takes effect when the RECONFIGURE statement is executed.
2 = Advanced. Variable is displayed only when the show advanced options is set.
3 = Dynamic and advanced.
[Column("status")]
[Nullable]
public short? Status { get; set; }
Property Value
Value
User-modifiable value for the variable. This is used by the SQL Server Database Engine only if RECONFIGURE has been executed.
[Column("value")]
[NotNull]
public int Value { get; set; }