Class ServerWideConfigurationSchema.Configuration
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.configurations (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
Contains a row for each server-wide configuration option value in the system.
See sys.configurations.
[Table(Schema = "sys", Name = "configurations", IsView = true)]
public class ServerWideConfigurationSchema.Configuration
- Inheritance
-
ServerWideConfigurationSchema.Configuration
- Extension Methods
Properties
ConfigurationID
Unique ID for the configuration value.
[Column("configuration_id")]
[NotNull]
public int ConfigurationID { get; set; }
Property Value
Description
Description of the configuration option.
[Column("description")]
[NotNull]
public string Description { get; set; }
Property Value
IsAdvanced
1 = The variable is displayed only when the show advancedoption is set.
[Column("is_advanced")]
[NotNull]
public bool IsAdvanced { get; set; }
Property Value
IsDynamic
1 = The variable that takes effect when the RECONFIGURE statement is executed.
[Column("is_dynamic")]
[NotNull]
public bool IsDynamic { get; set; }
Property Value
Maximum
Maximum value for the configuration option.
[Column("maximum")]
[Nullable]
public object? Maximum { get; set; }
Property Value
Minimum
Minimum value for the configuration option.
[Column("minimum")]
[Nullable]
public object? Minimum { get; set; }
Property Value
Name
Name of the configuration option.
[Column("name")]
[NotNull]
public string Name { get; set; }
Property Value
Value
Configured value for this option.
[Column("value")]
[Nullable]
public object? Value { get; set; }
Property Value
ValueInUse
Running value currently in effect for this option.
[Column("value_in_use")]
[Nullable]
public object? ValueInUse { get; set; }