摘要: declare @sql varchar(100) while 1=1 begin select top 1 @sql = 'kill '+cast(spid as varchar(3)) from master..sysprocesses where spid > 50 and spid <> @@spid if @@rowcount = 0 break exec(@sql) end 阅读全文
posted @ 2012-02-09 14:20 大笑江湖 阅读(232) 评论(0) 推荐(0) 编辑
摘要: --查询文件是否存在CREATE TABLE #tmp ([File Exists] BIT, [File is a Directory] BIT, [Parent Directory Exists] BIT) INSERT INTO #tmp ([File Exists], [File is a Directory], [Parent Directory Exists]) EXEC master.dbo.xp_fileexist 'D:\Test.bak' SELECT * FROM #tmp DROP TABLE #tmp--完整备份数据库BACKUP DATABASE M 阅读全文
posted @ 2011-12-09 17:13 大笑江湖 阅读(288) 评论(0) 推荐(0) 编辑
摘要: WAVECOM CDMA Modem 发送短信步骤2009年06月17日 23:51CDMA Modem发送信息,在超级终端模式下尝试发送信息时,需要使用以下命令格式:CDMA不能以PDU格式发送短信。需要将短信内容转换成Unicode编码,再发送出去。 需要用到的AT指令: AT+WSCL=6,4 AT+CMGF=1 AT+CNMI=2,1,0,1,0(此指令可参照自身设置而定) AT+CMGS="手机号码",短信长度回车(短信长度为短信内容转换为Unicode编码后的 长度) 输入Unicode编码后的短信内容以Ctrl+Z结尾 然后手机会返回发送确认信息C#代码 vo 阅读全文
posted @ 2011-05-11 13:36 大笑江湖 阅读(899) 评论(2) 推荐(1) 编辑
摘要: 演示:http://www.cssrain.cn/demo/imgResizeCenter/demo.html 相关代码:/** jQuery插件:* 图片预加载* 重置图片宽度,高度* 图片水平,垂直居中* Dev By CssRain.cn*/jQuery.fn.loadthumb = function(options) { options = $.extend({ src : "", imgId : "myImgs", parentId : "CRviewer" },options); var _self = this; _self.hide(); var img = new Image 阅读全文
posted @ 2010-12-31 10:20 大笑江湖 阅读(775) 评论(0) 推荐(0) 编辑
摘要: script type="text/javascript"// ![CDATA[document.write("div id=\"divNewYear\" style=\"width:278px;height:225px;background:#221816; font-size:12px; color:White;\" ");document.write("table style=\"border:none;\"");document.write("trtd style=\" line-height:14px;\"WILL祝您:新年快乐!span style=\" f 阅读全文
posted @ 2010-12-30 09:40 大笑江湖 阅读(646) 评论(0) 推荐(0) 编辑
摘要: 删除表EXECUTE sp_msforeachtable 'truncate table ?'删除procdeclare c_1 cursor for select name from sysobjects where xtype= 'P' --遍历游标,创建动态SQL语句,删除存储过程declare @pname nvarchar(100)open c_1fetch next from c_1 ... 阅读全文
posted @ 2010-11-17 11:22 大笑江湖 阅读(496) 评论(0) 推荐(1) 编辑
摘要: http://parkmy.javaeye.com/blog/423440今天在Java中想使用正则表达式来获取一段文本中的任意字符。于是很随意得就写出如下匹配 规则: (.*) 结果运行之后才发现,无法获得换行之后的文本。于是查了一下手册,才发现正则表达式中,“.”(点符号)匹配的是除了换行符“\n”以外的所有字 符。同时,手册上还有一句话:要匹配... 阅读全文
posted @ 2010-11-08 11:51 大笑江湖 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 在线示例:http://www.planeart.cn/demo/artDialog/最新版本(artDialog3.0.3_.zip):http://artdialog.googlecode.com/files/artDialog3.0.3_.zip历史版本下载:http://code.google.com/p/artdialog/downloads/list 阅读全文
posted @ 2010-10-18 20:45 大笑江湖 阅读(1457) 评论(5) 推荐(4) 编辑
摘要: public string GetSubValue(string str, string s, string e) { Regex rg = new Regex("(?<=(" + s + "))[.\\s\\S]*?(?=(" + e + "))", RegexOptions.Multiline | RegexOptions.Singleline);... 阅读全文
posted @ 2010-09-30 11:04 大笑江湖 阅读(260) 评论(2) 推荐(0) 编辑
摘要: javascript面向对象编程实现: 1.类的声明: function test1(){ this.p1 = "p1"; this.p2 = "p2"; this.f1 = function(){ alert("f1... 阅读全文
posted @ 2010-09-15 16:14 大笑江湖 阅读(285) 评论(0) 推荐(2) 编辑