Home >Database >Mysql Tutorial >max server memory_MySQL

max server memory_MySQL

WBOY
WBOYOriginal
2016-05-27 13:46:47998browse

MS SQL Server 2008 R2,主要是用作ERP的数据库,但它的内存使用率非常高:

max server memory_MySQL

经查资料,原来数据库有默认的情况之下,使用内存时它是尽可能使用完有效内存。如果你不想这样,你可以手动分配它。

max server memory_MySQL

或者你可以执行下面的命令:

max server memory_MySQL

可复制代码:

 

sp_configure 'show advanced options', 1;

GO

RECONFIGURE;

GO

sp_configure 'max server memory', 2000000000; -- 服务器总共24564MB,分配20GB给SQL即可。

GO

RECONFIGURE;

GO

 

执行之后,可以看到内存已经有调整了:

max server memory_MySQL

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn