摘要: 现象 他说是这几天才出现的,而且在每天的某一个时间段才会出现CPU占用高的情况 内存占用不太高,只占用了30个G CPU占用100% 排查方向 一般排查都是用下面的脚本,一般会用到三个视图sys.sysprocesses ,dm_exec_sessions ,dm_exec_requests 1 U 阅读全文
posted @ 2018-08-01 17:24 洋洋知道 阅读(461) 评论(0) 推荐(1) 编辑
摘要: 微信小程序官方Demo(Hao-Wu/WeApp-Demo) 微信小应用示例代码(phodal/weapp-quick) 微信小应用地图定位demo(giscafer/wechat-weapp-mapdemo) 微信小应用- 掘金主页信息流(hilongjw/weapp-gold) 微信小程序(应用 阅读全文
posted @ 2018-07-31 11:09 洋洋知道 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 方式一: 语句 SELECT * FROM 数据库A.dbo.表A a, 数据库B.dbo.表B b WHERE a.field=b.field "DBO"可以省略 如 SELECT * FROM 数据库A..表A a, 数据库B..表B b WHERE a.field=b.field 方式二(在一 阅读全文
posted @ 2018-04-26 16:58 洋洋知道 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 缩放:wxml js wxss 平滑的wxml js 阅读全文
posted @ 2017-01-18 09:39 洋洋知道 阅读(1372) 评论(0) 推荐(0) 编辑
摘要: ASHX: 其他方法: 例如要下载文件的地址为:htpp://www.baidu.com/test.rar 我们可以使用window.open("htpp://www.baidu.com/test.rar"), 但是该方法在火狐上没有效果的,在IE浏览器上是可以的。 如果用window.locati 阅读全文
posted @ 2017-01-11 13:56 洋洋知道 阅读(266) 评论(0) 推荐(0) 编辑
摘要: var u = navigator.userAgent; var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android终端 var isiOS = !!u.match(/\(i[^;]+;( U;)? CP 阅读全文
posted @ 2017-01-03 14:11 洋洋知道 阅读(198) 评论(0) 推荐(0) 编辑
摘要: Javascript: 网页可见区域宽: document.body.clientWidth 网页可见区域高: document.body.clientHeight 网页可见区域宽: document.body.offsetWidth (包括边线的宽) 网页可见区域高: document.body. 阅读全文
posted @ 2017-01-03 13:42 洋洋知道 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 判断所用浏览器 阅读全文
posted @ 2016-12-29 10:31 洋洋知道 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 请引用的的文件colResizable-1.6.js。 阅读全文
posted @ 2016-12-09 09:23 洋洋知道 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 计算两个时间之内的工作时长: 阅读全文
posted @ 2016-12-06 14:34 洋洋知道 阅读(1657) 评论(0) 推荐(0) 编辑