Class DataCollectorSchema.ConfigStore
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
syscollector_config_store (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
Returns properties that apply to the entire data collector, as opposed to a collection set instance. Each row in this view describes a specific data collector property, such as the name of the management data warehouse, and the instance name where the management data warehouse is located.
[Table(Database = "msdb", Schema = "dbo", Name = "syscollector_config_store", IsView = true)]
public class DataCollectorSchema.ConfigStore
- Inheritance
-
DataCollectorSchema.ConfigStore
- Extension Methods
Properties
ParameterName
The name of the property. Is not nullable.
[Column("parameter_name")]
[NotNull]
public string ParameterName { get; set; }
Property Value
ParameterValue
The actual value of the property. Is nullable.
[Column("parameter_value")]
[NotNull]
public object ParameterValue { get; set; }