惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

宝玉的分享
宝玉的分享
NISL@THU
NISL@THU
E
Exploit-DB.com RSS Feed
L
LINUX DO - 热门话题
L
Lohrmann on Cybersecurity
K
Kaspersky official blog
Project Zero
Project Zero
Cisco Talos Blog
Cisco Talos Blog
T
The Exploit Database - CXSecurity.com
P
Palo Alto Networks Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
T
Threatpost
S
Schneier on Security
G
GRAHAM CLULEY
The Hacker News
The Hacker News
T
Threat Research - Cisco Blogs
Scott Helme
Scott Helme
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
P
Privacy & Cybersecurity Law Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
T
Tor Project blog
AWS News Blog
AWS News Blog
Simon Willison's Weblog
Simon Willison's Weblog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
爱范儿
爱范儿
P
Privacy International News Feed
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
S
Securelist
G
Google Developers Blog
The Last Watchdog
The Last Watchdog
Google Online Security Blog
Google Online Security Blog
美团技术团队
F
Fortinet All Blogs
小众软件
小众软件
Recorded Future
Recorded Future
V
Visual Studio Blog
B
Blog RSS Feed
H
Help Net Security
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Google DeepMind News
Google DeepMind News
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Martin Fowler
Martin Fowler
Latest news
Latest news
Spread Privacy
Spread Privacy
H
Heimdal Security Blog

博客园 - Jason's WMI SQL Related Blog

使用Raid提高SQL的性能和可用性 SQL Server BCP 的数据导入导出 - Jason's WMI SQL Related Blog 用脚本查看某库中每个表大小 用脚本查看Server上每个库的大小 Easy way to estimate a table size in the future How to determine which version of SQL Server 2000 is running modify数据时临时暂停触发器的作用 关于MSBA和Firewall 关于如何在BCP和Bulk Insert中使用 文本限定符 简单的ASP.net查询数据库脚本 关于DTS中全局变量数据类型date Log Shipping实现 如何使用SQL 2000的DTS自动从FTP服务器下载文件 SQL Server数据库备份还原 SQl Server中修改数据库的备份模型后要完全备份一次数据库 如何在SQL SErver2000中恢复Master数据库 SQLSERVER 管理DTS包 使用WMI重启不能用3389登录的服务器 - Jason's WMI SQL Related Blog 如何使用T-SQL来给系统增加计划任务,
关于SQL SERVER的内存使用的问题
Jason's WMI SQL Related Blog · 2005-11-30 · via 博客园 - Jason's WMI SQL Related Blog
关于SQL SERVER的内存使用的问题

每次机器上开了SQL SERVER的时候,不管是否在用作SQL相关的工作,内存都会很吃紧。今天正好在书上看到这个事情,从网上Google了一下,在MS的网站上找到了相关的内容。

关于内存占用:
SQL Server对内存的大量占用并不是内存泄漏的问题,而是SQL Server的缓冲池的预期行为。它会根据系统报告的内存剩余量进行参考,一直占用到只剩余大约4-10M的物理内存用于系统的页交换。
另外,服务器设置的“服务器的最大内存”数量仅表示是SQL Server缓冲池的最大限制,并不表示SQL Server对其它的部分的分配量,所以SQL Server的内存使用量有时会超过“服务器的最大内存“的限制数量。
原文见http://support.microsoft.com/default.aspx?scid=kb;zh-cn;321363

关于如何确定SQLServer的内存的需求量:
要检查SQL SERVER是否有足够的内存,可以监测Memory:Abailable Bytes计数器。如果此值小于5M,SQL Serve会系统请求更多的物理内存。
监视SQL SERVER正使用的内存量,可参考下列两个计数器:
SQLSERVER:Memory manger:Total Server Memory(KB)服务器内存总数,指当前SQL Server服务器上所有应用程序使用的内存的总量;
SQLSERVER:Memory manager:Targen Server Manager(KB)目标服务器内存。指要更好的提高SQL SERVER的工作效率,需要多少内存。

另:
Process:Working Set,如果这一数值持续低于SQL Server配置的内存使用数量,表示给它配置的内存是绰绰有余的。
Buffer Cache Hit Ratio,表示在高速缓存中找到而不用到磁盘中读取的页的百分比,设计良好的系统应该是90-95%,可能通过增加内存来提高命中率。