Class SqlServerMemoryProperties
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents the server memory properties of a SQL instance.
public class SqlServerMemoryProperties : BypassSection
- Inheritance
-
SqlServerMemoryProperties
- Inherited Members
Constructors
SqlServerMemoryProperties()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.SqlServerMemoryProperties class.
public SqlServerMemoryProperties()
Properties
AweEnabled
Gets or sets whether address windowing extensions (AWE) is enabled. This only applies to SQL Server 2008 and SQL Server 2008 R2.
public BooleanOption AweEnabled { get; set; }
Property Value
IndexCreationMemory
Gets or sets the index creation memory in KB (0 indicates dynamic).
public int IndexCreationMemory { get; set; }
Property Value
MaxServerMemory
Gets or sets the maximum server memory in MB.
public int MaxServerMemory { get; set; }
Property Value
MinMemoryPerQuery
Gets or sets the minimum memory per query in KB.
public int MinMemoryPerQuery { get; set; }
Property Value
MinServerMemory
Gets or sets the minimum server memory in MB.
public int MinServerMemory { get; set; }
Property Value
Methods
ToString()
Returns the memory properties as a human readable string.
public override string ToString()
Returns
- string
The memory properties as a human readable string.