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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
L
LangChain Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
M
MIT News - Artificial intelligence
D
Docker
WordPress大学
WordPress大学
J
Java Code Geeks
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
博客园 - 叶小钗
Last Week in AI
Last Week in AI
Stack Overflow Blog
Stack Overflow Blog
有赞技术团队
有赞技术团队
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky

博客园 - by1455

Local policy - User rights assignment 对照表 PowerShell “execution of scripts is disabled on this system.” Office Web app server 2013 目前无法和windows server 2012 R2兼容。 Sharepoint 2013 出现0x80131904错误 IE 8 下sharepoint 2013 难看的字体的解决方案 微软撤回sharepoint 2013 sp1 修改TEMPDB所在的路径 当DATABASE进入了suspect模式以后 如何删除sharepoint列表List中的全部数据。 sharepoint 2013 sp1 patch安装后的手工运行 Sharepoint 2013 多服务器域的目录服务器和搜索服务的配置 加速安装 Sharepoint 2013 SP1 windows 2012R2 上必须要用sharepoint 2013 sp1. Sharepoint 2013 - 直接显示Doclib中的html page 禁用loop back check Sharepoint 2013/2010 登陆身份验证 blank site teamplate去了哪里? sharepoint 2013 service pack 和 Hotfix 版本 如何从Microsoft web platform installer取得离线安装包
SQL 性能不佳的几个原因
by1455 · 2014-09-22 · via 博客园 - by1455

•不准确的统计数据
•差劲的索引
•差劲的查询设计
•差劲的执行计划,通常是由不正确的参数引起的
•过度阻塞和死锁
•非基于集合的操作
•不良数据库设计
•过度碎片
•不能重复使用执行计划
•查询频繁重编译
•不当使用游标
•数据库日志的配置不当
•过度使用或tempdb数据库的配置不当

通过以下SQL语句可以发现一些有趣的数据

SELECT TOP (10) dows.*

FROM sys.dm_os_wait_stats AS dows

ORDER BY dows.wait_time_ms DESC;

posted on 2014-09-22 15:38  by1455  阅读(316)  评论(0)    收藏  举报

刷新页面返回顶部