Class SqlTableStorageSettings
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the storage settings for a table. This applies to on-premises SQL instances.
public class SqlTableStorageSettings : BypassSection
- Inheritance
-
SqlTableStorageSettings
- Inherited Members
Constructors
SqlTableStorageSettings()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.SqlTableStorageSettings class.
public SqlTableStorageSettings()
Properties
FileGroup
Gets or sets the name of the filegroup containing the table.
public string FileGroup { get; set; }
Property Value
IsPartitioned
Gets or sets whether the table is partitioned.
public BooleanOption IsPartitioned { get; set; }
Property Value
IsVarDecimalStorageFormatEnabled
Gets or sets whether VarDecimal storage format is enabled for the table.
public BooleanOption IsVarDecimalStorageFormatEnabled { get; set; }
Property Value
PartitionScheme
Gets or sets the partition scheme for the table.
public string PartitionScheme { get; set; }
Property Value
RowCount
Gets or sets the number of rows in the table.
public long RowCount { get; set; }
Property Value
TextFileGroup
Gets or sets the name of the filegroup containing the table's text data.
public string TextFileGroup { get; set; }
Property Value
Methods
Clone()
Returns a CENTREL.XIA.Configuration.Types.SqlTableStorageSettings cloned from this object.
public SqlTableStorageSettings Clone()
Returns
- SqlTableStorageSettings
A CENTREL.XIA.Configuration.Types.SqlTableStorageSettings.