由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - SQL Server -- 大家一起来做题 (10个包包)
相关主题
谁有电子版的SQL Server2005书,能否共享一下有人用ms sqlserver来搭自己的网站的吗?
高手指点: 服务器MSSQL Performance Counters
SQL Server 卸载的问题。SQL Server 2005 Performance issue
help: SQL Server数据同步复制SQL 2008 64bit performance issue
问Jackrun, Beijing等大侠performance问题请推荐一、二本SQL Server2005的书
正式开始学sql server 2008 + .NET 3.5请问SQL Server2005里如何多行注释?
SQL SERVER没人学啊SQL server2005: Why can't I see the data?
CINASSUG/PASS全球华人讲座: Hekaton--SQL Server by MCM John Huang改写(migrate) stored proc 问题
相关话题的讨论汇总
话题: server话题: sql话题: memory话题: manager话题: buffer
进入Database版参与讨论
1 (共1页)
z***y
发帖数: 7151
1
You have SQL SERVER 2008 R2 which has been short of memory. Now you had
added memory and need to monitor to make sure SQL SERVER has enough memory,
which options are needed (Two options are needed):
a. run dbcc memorystatus
b. Check SQL Server Buffer Manager: Checkpoint Pages/Sec
c. Chck SQL Server Memory Manager: Target Server Memory
d. SQL Server Buffer Manager: Page Life Expectancy
e. run select * from sys.dm_os_wait_stats order by wait_time_ms desc;
答错不丢人。 要求不google, 五分钟作答。 第一个答对并且有具体说明的, 给10个
包子。
===================
答案是CD
招人的时候不妨问问, 当场答出来的至少是Senior level。
下午我写一下具体的。
===============================
Memory Manager\Total Server Memory (KB): This indicates the current
size of the buffer pool.
Memory Manager\Target Server Memory (KB): This indicates the ideal
size for the buffer pool. Total and Target should be almost the same on a
server with no memory pressure that has been running for a while. If Total
is significantly less than Target,then it’s likely that SQL Server cannot
grow the buffer pool due to memory pressure, in
which case you can investigate further.
SQL Server Buffer Manager: Page Life Expectancy
See Average Page Life Expectancy Counter which is in the Perfmon object SQL
Server Buffer Manager (this represents is the average number of seconds a
page stays in cache). For OLTP, an average page life expectancy of 300 is 5
minutes. Anything less could indicate memory pressure, missing indexes, or a
cache flush.
For OLTP, 300 (seconds) or above should be meet. 但是Paul Randal 有一篇文章
说这个也100%不正确。 他能反驳BOL 因为人家可是SQL Server2005 的 PM。 但是对于
一般情况, 这个还算成立。
o***i
发帖数: 603
2
5分钟作答,lz太没诚意了

,

【在 z***y 的大作中提到】
: You have SQL SERVER 2008 R2 which has been short of memory. Now you had
: added memory and need to monitor to make sure SQL SERVER has enough memory,
: which options are needed (Two options are needed):
: a. run dbcc memorystatus
: b. Check SQL Server Buffer Manager: Checkpoint Pages/Sec
: c. Chck SQL Server Memory Manager: Target Server Memory
: d. SQL Server Buffer Manager: Page Life Expectancy
: e. run select * from sys.dm_os_wait_stats order by wait_time_ms desc;
: 答错不丢人。 要求不google, 五分钟作答。 第一个答对并且有具体说明的, 给10个
: 包子。

z***y
发帖数: 7151
3
施主, 如果不google, 五分钟就是你知道就是知道 不知道就是不知道。

【在 o***i 的大作中提到】
: 5分钟作答,lz太没诚意了
:
: ,

B*****g
发帖数: 34098
4
我就会google,嘿嘿

【在 z***y 的大作中提到】
: 施主, 如果不google, 五分钟就是你知道就是知道 不知道就是不知道。
o***i
发帖数: 603
5
我的意思是看到你的帖子是早就过去5分钟了

【在 z***y 的大作中提到】
: 施主, 如果不google, 五分钟就是你知道就是知道 不知道就是不知道。
z***y
发帖数: 7151
6
我说的是花五分钟做题。

【在 o***i 的大作中提到】
: 我的意思是看到你的帖子是早就过去5分钟了
s**********o
发帖数: 14359
7
D
z***y
发帖数: 7151
8
明天公布答案。
现在还木有对的。
m*****y
发帖数: 229
9
A and C? A is to check text size for current transaction, and C is to check
sever side size?
m*******l
发帖数: 12782
10
据说屁股大的能生
s**********o
发帖数: 14359
11
检测软件都是看D的,这个东西也没啥标准吧,你说MEMORY不够用,
怎么个不够用法,比如BUFFER CACHE HIT RATIO低或者PROCEDURCE CACHE
HIT RATIO低的话,MEMORY也用的厉害。你给多少MEMORY,SQL SERVER
就用多少,还是要分析到底是谁在用MEMORY,哪个SP,哪个QUERY,能不能
优化,是不是需要单独的BOX等等。
1 (共1页)
进入Database版参与讨论
相关主题
改写(migrate) stored proc 问题问Jackrun, Beijing等大侠performance问题
请推荐一本自学SQL的书吧正式开始学sql server 2008 + .NET 3.5
发包子,每周一题SQL SERVER没人学啊
SQL 2008 Create Index vs Rebuild Index (Alter Index)CINASSUG/PASS全球华人讲座: Hekaton--SQL Server by MCM John Huang
谁有电子版的SQL Server2005书,能否共享一下有人用ms sqlserver来搭自己的网站的吗?
高手指点: 服务器MSSQL Performance Counters
SQL Server 卸载的问题。SQL Server 2005 Performance issue
help: SQL Server数据同步复制SQL 2008 64bit performance issue
相关话题的讨论汇总
话题: server话题: sql话题: memory话题: manager话题: buffer