Table of Contents

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

int

Description

Description of the configuration option.

[Column("description")]
[NotNull]
public string Description { get; set; }

Property Value

string

IsAdvanced

1 = The variable is displayed only when the show advancedoption is set.

[Column("is_advanced")]
[NotNull]
public bool IsAdvanced { get; set; }

Property Value

bool

IsDynamic

1 = The variable that takes effect when the RECONFIGURE statement is executed.

[Column("is_dynamic")]
[NotNull]
public bool IsDynamic { get; set; }

Property Value

bool

Maximum

Maximum value for the configuration option.

[Column("maximum")]
[Nullable]
public object? Maximum { get; set; }

Property Value

object

Minimum

Minimum value for the configuration option.

[Column("minimum")]
[Nullable]
public object? Minimum { get; set; }

Property Value

object

Name

Name of the configuration option.

[Column("name")]
[NotNull]
public string Name { get; set; }

Property Value

string

Value

Configured value for this option.

[Column("value")]
[Nullable]
public object? Value { get; set; }

Property Value

object

ValueInUse

Running value currently in effect for this option.

[Column("value_in_use")]
[Nullable]
public object? ValueInUse { get; set; }

Property Value

object