Hi everyone,
I'm running SQL 2005 SP2 on Windows 2003 enterprise OS system. Recently I upgraded my memory from 8GB to 12GB. I want to enable AWE on my SQL serer to use all the memory available.
I ran the follow command on my SQL server....
sp_configure
'show advanced options', 1RECONFIGURE
GO
sp_configure
'awe enabled', 1RECONFIGURE
GO
But I encounter this error:
Configuration option 'show advanced options' changed from 0 to 1. Run the RECONFIGURE statement to install.
Msg 5845, Level 16, State 1, Line 2
Address Windowing Extensions (AWE) requires the 'lock pages in memory' privilege which is not currently present in the access token of the process.
Configuration option 'awe enabled' changed from 1 to 1. Run the RECONFIGURE statement to install.
Msg 5845, Level 16, State 1, Line 2
Address Windowing Extensions (AWE) requires the 'lock pages in memory' privilege which is not currently present in the access token of the process.
I run the SP_Configure again, I see the running value of the ewe enabled is still 0.
Please help?
thanks
Jon