Class DataSpacesSchema.DestinationDataSpace
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.destination_data_spaces (Transact-SQL)
Applies to: √ SQL Server (all supported versions)
Contains a row for each data space destination of a partition scheme.
[Table(Schema = "sys", Name = "destination_data_spaces", IsView = true)]
public class DataSpacesSchema.DestinationDataSpace
- Inheritance
-
DataSpacesSchema.DestinationDataSpace
- Extension Methods
Properties
DataSpaceID
ID of the data space to which data for this scheme's destination is being mapped.
[Column("data_space_id")]
[NotNull]
public int DataSpaceID { get; set; }
Property Value
DestinationID
ID (1-based ordinal) of the destination-mapping, unique within the partition scheme.
[Column("destination_id")]
[NotNull]
public int DestinationID { get; set; }
Property Value
PartitionSchemeID
ID of the partition-scheme that is partitioning to the data space. For partitioned tables, this can be joined to data_space_id in sys.partition_schemes
.
[Column("partition_scheme_id")]
[NotNull]
public int PartitionSchemeID { get; set; }