使用的内存如何大于 SQL Server Express 限制?
How is the memory used greater than the SQL Server Express limitation?
Microsoft 告诉我 SQL Server 2014 Express 应该有 最大内存利用(每个 SQL 服务器数据库引擎实例) 的1 GB。
每当我 运行 这个简单的脚本告诉我 正在使用的物理内存 我得到 4 GB。
SELECT dopm.physical_memory_in_use_kb
FROM sys.dm_os_process_memory AS dopm;
这是版本信息。
什么给了?服务器本身有 24 GB 的 RAM,所以我希望 SQL 服务器尽可能使用更多内存。我想我会开始使用不同版本的 SQL...
据此link
Express Edition
Express edition is a free version of SQL Server that is limited in its
functionality and size. Is limited to one socket with a maximum of
four cores for CPU power, 1 GB of memory, and a database size. No
larger than 10 GB. If using the reporting features, The maximum memory
is raised to 4 GB. Express edition is compatible with all other
editions of SQL Server. Express edition has a few different versions
that can be downloaded
并且根据 Features Supported by the Editions of SQL Server 2014,您会发现 4GB RAM 限制 对于 Express with Advanced Services[=] 为 Maximum memory utilized (per instance of Reporting Services)
22=]
Microsoft 告诉我 SQL Server 2014 Express 应该有 最大内存利用(每个 SQL 服务器数据库引擎实例) 的1 GB。
每当我 运行 这个简单的脚本告诉我 正在使用的物理内存 我得到 4 GB。
SELECT dopm.physical_memory_in_use_kb
FROM sys.dm_os_process_memory AS dopm;
这是版本信息。
什么给了?服务器本身有 24 GB 的 RAM,所以我希望 SQL 服务器尽可能使用更多内存。我想我会开始使用不同版本的 SQL...
据此link
Express Edition
Express edition is a free version of SQL Server that is limited in its functionality and size. Is limited to one socket with a maximum of four cores for CPU power, 1 GB of memory, and a database size. No larger than 10 GB. If using the reporting features, The maximum memory is raised to 4 GB. Express edition is compatible with all other editions of SQL Server. Express edition has a few different versions that can be downloaded
并且根据 Features Supported by the Editions of SQL Server 2014,您会发现 4GB RAM 限制 对于 Express with Advanced Services[=] 为 Maximum memory utilized (per instance of Reporting Services)
22=]