02 2018 档案
摘要:https://www.cnblogs.com/lxhbky/p/5962393.html 需求:查询表dbo.Message,每页10条,查询第2页 1:TOP() SELECT TOP(20) * FROM dbo.Message WHERE Code NOT IN (SELECT TOP(10
阅读全文
摘要:select * from table1 where patindex('%关键字%' , aa) = 0 select * from table1 where charindex('关键字' , aa) = 0 select * from table1 where aa like '%关键字%'
阅读全文
摘要:https://zhidao.baidu.com/question/154994771.html
阅读全文
摘要:https://www.cnblogs.com/luluping/archive/2010/11/26/1888364.html 由于Sql Server对于系统内存的管理策略是有多少占多少,除非系统内存不够用了(大约到剩余内存为4M左右), Sql Server才会释放一点点内存。所以很多时候,我
阅读全文
摘要:https://www.cnblogs.com/srsrd/p/6962982.html 方法一: 方法二: 使用以下语句查找出什么语句占内存最高,针对占内存高的语句进行优化SELECT SS.SUM_EXECUTION_COUNT, T.TEXT,SS.SUM_TOTAL_ELAPSED_TIME
阅读全文