摘要:
多台主从数据库,高并发减少由于所有请求导致数据库IO瓶颈,做了一个连接字符串IP的切换。 完全随机,还没有加入sql servers的实际压力压力情况、连接数、负载等信息排序优先级 //::::::web.Config // <appSettings> <add name="SqlServersIp 阅读全文
摘要:
sql server 获取最大消耗的存储过程 原理来自 执行计划或客户端统计信息统计结果 SELECT TOP 10 OBJECT_NAME(a.object_id,database_id) SP_Name, DB_NAME(a.database_id) Database_Name, a.cache 阅读全文
摘要:
SQL Server产生的Log通常存放在 C:\\Program Files\Microsoft SQL Server\MSSQL.xx\MSSQL\LOG\ERRORLOG和ERRORLOG.xx 文件中,log文件中有大量的信息或错误。查阅ERROR.LOG很耗时耗力,特别是有多个SQL Se 阅读全文
摘要:
安装ngxin,启动一直提示: nginx: [emerg] bind() to 0.0.0.0:80 failed (10013: An attempt was made to access a socket in a way forbidden by its access permissions 阅读全文
摘要:
public static string OptimisedSql(this string strSqlOrExec) { if (string.IsNullOrWhiteSpace(strSqlOrExec)) { return string.Empty; } //清空临时置换符号 (强制不出现字 阅读全文
摘要:
alter table [db21].[dbo].[tab23] add [col23] nvarchar(255) null, [col24] int null 阅读全文
摘要:
elasticsearch 不包含指定关键词精确过滤,后加其他过滤条件 ES Code: GET order/list/_search { "size": 10, "query": { "bool": { "must_not": [ { "bool": { "should": [ { "terms" 阅读全文
摘要:
// es 查询语句 GET index1/order/_search { "query": { "bool": { "must": [ { "range": { "date": { "gte": "2015-01-01T00:00:00.000", "lte": "2016-01-01T00:00 阅读全文
摘要:
select convert(numeric(16,2),( round(convert(numeric(16,2),(replace([col1],',',''))),2) / case when (round(convert(numeric(16,2),(replace([col2],',',' 阅读全文
摘要:
1、查看所有端口情况 C:\>netstat -ano 2、查看指定端口情况 C:\>netstat -aon|findstr "8088" 3、查看端口对应的程序 C:\>tasklist|findstr "8088" 4、解释进程 taskkill /f /t /im port.exe 阅读全文