z***y 发帖数: 7151 | 1 我有几个, 要求很简单, 谁愿意写一份详细的解答, 我可以跟你一起Review 一下。
1. Setup Mirroring on two SQL Server 2008 hosted in different Data center.
要求:分析可行性, 自己设定条件, 然后根据自己的设定条件, 写一份分析文档
, 三页纸。
2. Performance Turnning
现在有一个sql server,four CPU sockets, each CPU has eight cores. memory
128GB, 发现CPU占用率97%而且是经常持续性的这么高, 而在同时, physical I/O
几乎为零。
有哪些可能性? 从哪些地方开始查。 一页纸。
都是上个月做过的真的projects, 这可能是最好的练习机会了。 |
s**********o 发帖数: 14359 | 2 人家说的是SOLUTION PROJECTS吧,不是这种硬件SETUP |
s**********o 发帖数: 14359 | 3 你理解错了,人是想看你怎么做PROJECT,当然自己不想白做了,你做好了,人学习学
习,你讲讲不同的DATA CENTER怎么MIRROR啊,不在一个DOMAIN的话,还要FTP吗? |
a9 发帖数: 21638 | 4 想起了我搞的一个错,在一个存储过程里搞了个死循环,cpu一直99%,搞了好几个小时
才发现问题。。。
。
.
【在 z***y 的大作中提到】 : 我有几个, 要求很简单, 谁愿意写一份详细的解答, 我可以跟你一起Review 一下。 : 1. Setup Mirroring on two SQL Server 2008 hosted in different Data center. : 要求:分析可行性, 自己设定条件, 然后根据自己的设定条件, 写一份分析文档 : , 三页纸。 : 2. Performance Turnning : 现在有一个sql server,four CPU sockets, each CPU has eight cores. memory : 128GB, 发现CPU占用率97%而且是经常持续性的这么高, 而在同时, physical I/O : 几乎为零。 : 有哪些可能性? 从哪些地方开始查。 一页纸。 : 都是上个月做过的真的projects, 这可能是最好的练习机会了。
|
P********l 发帖数: 4 | 5 First check the waits type. If the top waits type is CXPACKET, you need to
low the level of parallism (either on server level or add hint OPTION (
MAXDOP n) to the queries which use parallism in query execution plan.
Also check if your sql server uses full text search or not..
2. Performance Turnning |
s**********o 发帖数: 14359 | 6 也可能是MEMORY,或者DISC CONTROLLER 啥的出了硬件的问题,监测一天,看晚上
SERVER不忙的时候也这样吗?最好看看EVENTLOG有没有硬件的ERROR, CXPACKET WAIT可
以用NUMA的。
【在 P********l 的大作中提到】 : First check the waits type. If the top waits type is CXPACKET, you need to : low the level of parallism (either on server level or add hint OPTION ( : MAXDOP n) to the queries which use parallism in query execution plan. : Also check if your sql server uses full text search or not.. : 2. Performance Turnning
|