VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 数据库 > sql数据库 >
  • sql语句大全之SQL Server性能调优指南

经过几个月断断续续,比较系统学习,终于对数据库优化中所涉及到的索引技术有了一个深刻的认识。解决问题,我喜欢从“根”上开始,刨根问底,知其然,且知其所以然。这样在实际中方能运用自如,游刃有余。

本系列文章大部分都是从《Microsoft SQL Server 2000 Unleashed》一书中翻译过来的,在翻译的过程中,极少的地方加上了自己的理解。

第一部分:性能调优基础

[list]
[*][url=http://xiebh.iteye.com/blog/641298]数据库性能优化概观[/url]
[*][url=http://xiebh.iteye.com/blog/480833]SQL Server内存管理[/url]
[*][url=http://xiebh.iteye.com/blog/480117]SQL Server数据页[/url]
[*][url=http://xiebh.iteye.com/blog/479461]SQL Server数据表和索引[/url]
[*][url=http://xiebh.iteye.com/blog/642694]SQL Server 查找数据的三种方法比较[/url]
[/list]

第二部分:[url=http://xiebh.iteye.com/blog/642703]索引与性能[/url]
[list]
[*][url=http://xiebh.iteye.com/blog/505052]索引使用标准(Index Usage Criteria)[/url]
[*][url=http://xiebh.iteye.com/admin/blogs/506434]索引的选择(Index Selection)[/url]
[*][url=http://xiebh.iteye.com/blog/642717]评价索引的有效性(Evaluating Index Usefulness)[/url]
[*][url=http://xiebh.iteye.com/admin/blogs/539865]索引统计(Index Statistics)[/url]
[*][url=http://xiebh.iteye.com/admin/blogs/539350]索引设计指南(Index Design Guidelines)[/url]
[*][url=http://xiebh.iteye.com/blog/642739]索引视图(Indexed Views)[/url]
[*][url=http://xiebh.iteye.com/blog/642750]选择索引:查询 & 修改性能(Choosing Indexes: Query Versus update Performance)[/url]
[*][url=http://xiebh.iteye.com/blog/642751]总结(summary)[/url]
[/list]

第三部分:理解查询优化(Understanding Query OptimizatI/On)([color=red]整理中...[/color])
[list]
[*]什么是查询优化器
[*]查询的编译和优化
[*]步骤1:查询分析
[*]步骤2:索引选择
[*]步骤3:连接选择
[*]步骤4:执行计划选择
[*]重用查询计划
[*]其它查询处理策略
[*]并行查询处理
[*]数据仓库和大数据库查询策略
[*]通常查询优化问题
[*]管理优化器
[/list]

相关教程