Table of Contents

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

BooleanOption

IndexCreationMemory

Gets or sets the index creation memory in KB (0 indicates dynamic).

public int IndexCreationMemory { get; set; }

Property Value

int

MaxServerMemory

Gets or sets the maximum server memory in MB.

public int MaxServerMemory { get; set; }

Property Value

int

MinMemoryPerQuery

Gets or sets the minimum memory per query in KB.

public int MinMemoryPerQuery { get; set; }

Property Value

int

MinServerMemory

Gets or sets the minimum server memory in MB.

public int MinServerMemory { get; set; }

Property Value

int

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.