摘要: 前些天客户那边的Exchange服务器重启下后Exchange就没办法用了。跑服务器上去检查了一下发现如下症状: 1、Exchange system attendant 服务无法启动; 2、打开Exchange管理工具时出错,提示拒绝访问;(如图) 3、在dsa中打开用户属性时出错,无法看到Exchange相关... 阅读全文
posted @ 2008-04-25 20:55 汪翔 阅读(1879) 评论(0) 推荐(0) 编辑
摘要: 之前做的东西数据量都不大,没有太考虑到效率,这次意识到不足想看看大数据如何分页会比较好。 网络上搜索了一下发现大家主要也是评论这两种方式比较好 第一种: select top 10 * from table1 where id not in (select top ((页码-1)*页大小) id from table1 where 条件 order by id) and where 条件 orde... 阅读全文
posted @ 2008-04-25 01:53 汪翔 阅读(535) 评论(3) 推荐(0) 编辑
摘要: 去面试时候的一道笔试题目 select * from tbl_user where common_name in (select common_name from tbl_user group by common_name having count(common_name)>1) 阅读全文
posted @ 2008-04-25 01:19 汪翔 阅读(330) 评论(0) 推荐(0) 编辑