参考sys.dm_db_index_physical_stats 检查索引碎片情况 1.SELECT2.OBJECT_NAME(object_id) as objectname,3.object_id AS objectid,4.index_id AS indexid,5.partition_number AS partitionnum,6.avg_fragmentation_in_percent AS fra7.FROM sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL , NULL, ‘LIMITED')8.WHERE avg_fragmentation_in_percent 10.0 AND index_id 0;9. 10.使用脚本中的 sys....[ 查看全文 ]
《fifa 11》分享全手动的技巧 在一个国外网站上看到的,写的挺详细的,可能不是PC的,但是也对咱有参考价值。本人水平很差,全手动在pro难度挣扎。。。不过全手动其实还是有点乐趣的。当然,自动,半自动or全手动大家自由选择喽。全文如下,每段有一些翻译的概要: Used to be a fan-boy of the PS3 PES/WE series but since the release of Fifa 09, I have been a avid follower of the Fifa series. 这哥们...[ 查看全文 ]
有些用户在买了新的SSD硬盘之后,想要知道自己的硬盘速度,这个问题该怎么解决呢?今天图老师小编就教大家一个简单的方法。 Terminal指令真是无所不能,就连SSD的速度也能准确算计出来: 测试写入速度: time dd if=/dev/zero bs=1024k of=tstfile count=1024 在我的2011款MBA执行测试后,输出结果是: 1024+0 records in 1024+0 records out 1073741824 bytes transferred in 4.196358 secs (2...[ 查看全文 ]