摘要:
1. 尽量少的抛出异常 throw new System.Exception(.); 抛出异常是严重影响性能的。 (a) 对于ASP.NET, Response.Redirect(...) 会抛出 ThreadAbort 的异常, 而且,该用法会在 Client 和 Server间返回两次,应尽量采用Client 端的方式或 Server.Transfer方式来代替。 2. 对于函... 阅读全文
摘要:
7. 查询第xxx行数据 假设id是主键: select * from (select top xxx * from yourtable) aa where not exists(select 1 from (select top xxx-1 * from yourtable) bb where aa.id=bb.id) 如果使用游标也是可以的 fetch absolute [nu... 阅读全文