I have an SQL cluster with 2 nodes.
The SQL instance is installed on node1.
Both nodes have 8gb of RAM.
I have tried to set both a min and max memory on node1 for SQL Server to use.
on both nodes:
- enables PAE
- configured the Lock Pages in Memory
question:
do I have to restart the server (the physical machine) for it to notice the change in boot.ini?
on node 1:
sp_configure 'show advanced options',1
reconfigure
go
sp_configure 'awe enabled', 1
reconfigure
go
sp_configure 'min server memory', 2048
reconfigure
go
sp_configure 'max server memory', 6144
reconfigure
go
now when I run:
SELECT * FROM sys.dm_os_performance_counters
WHERE object_name like 'SQLServer:Mem%'
GO
it shows:
Total Server Memory (KB) 1618880
and when I run:
sp_configure
it shows:
maximum config_val run_val
max server memory (MB) 2147483647 6144 6144
min server memory (MB) 2147483647 2048 2048
any suggestions what might cause this?
is it because I have not re-booted the server (physical machine)?
sH
The SQL instance is installed on node1.
Both nodes have 8gb of RAM.
I have tried to set both a min and max memory on node1 for SQL Server to use.
on both nodes:
- enables PAE
- configured the Lock Pages in Memory
question:
do I have to restart the server (the physical machine) for it to notice the change in boot.ini?
on node 1:
sp_configure 'show advanced options',1
reconfigure
go
sp_configure 'awe enabled', 1
reconfigure
go
sp_configure 'min server memory', 2048
reconfigure
go
sp_configure 'max server memory', 6144
reconfigure
go
now when I run:
SELECT * FROM sys.dm_os_performance_counters
WHERE object_name like 'SQLServer:Mem%'
GO
it shows:
Total Server Memory (KB) 1618880
and when I run:
sp_configure
it shows:
maximum config_val run_val
max server memory (MB) 2147483647 6144 6144
min server memory (MB) 2147483647 2048 2048
any suggestions what might cause this?
is it because I have not re-booted the server (physical machine)?
sH