2012年微软认证考试辅导资料21
09-08
0

优化SQL Server性能(百分之十) 
Implement Resource Governor.实施资源总督。 

Use the Database Engine Tuning Advisor.使用数据库引擎优化顾问。 

Collect trace data by using SQL Server Profiler.收集跟踪数据,使用SQL Server事件探查器。 

Collect performance data by using Dynamic Management Views (DMVs).收集性能数据使用动态管理次数( DMVs ) 。 

Collect performance data by using System Monitor.收集性能数据使用系统监视器。 

Use Performance Studio.使用性能工作室。  
 

使用整数数据的精确数字数据类型。
bigint
从 -2^63 (-9223372036854775808) 到 2^63-1 (9223372036854775807) 的整型数据(所有数字)。存储大小为 8 个字节。
int
从 -2^31 (-2,147,483,648) 到 2^31 - 1 (2,147,483,647) 的整型数据(所有数字)。存储大小为 4 个字节。int 的 SQL-92 同义字为 integer。
smallint
从 -2^15 (-32,768) 到 2^15 - 1 (32,767) 的整型数据。存储大小为 2 个字节。
tinyint
从 0 到 255 的整型数据。存储大小为 1 字节。 

相关内容