jirong
jirong
摘要: 1、首先要将SQL Server 的xp_cmdshell 的功能启动,随后我们将使用xp_cmdshell 来读取XML文档内容,执行如下脚本[代码]2、请将以下的XML内容保存成aa.xml,并存于“C:\”下。[代码]3、执行以下命令[代码] 阅读全文
posted @ 2009-06-14 23:49 jirong 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 什么是 SHTML使用SSI(Server Side Include)的html文件扩展名,SSI(Server Side Include),通常称为“服务器端嵌入”或者叫“服务器端包含”,是一种类似于ASP的基于服务器的网页制作技术。SSI工作原理:将内容发送到浏览器之前,可以使用“服务器端包含 (SSI)”指令将文本、图形或应用程序信息包含到网页中。例如,可以使用 SSI 包含时间/日期戳、版... 阅读全文
posted @ 2009-02-06 09:52 jirong 阅读(510) 评论(0) 推荐(0) 编辑
摘要: 运行:regsvr32scrrun.dll 可解决 阅读全文
posted @ 2007-09-19 10:59 jirong 阅读(203) 评论(0) 推荐(0) 编辑
摘要: Class1.cs using System; class Class1{ public static String method1() { return "I am Static method (method1) in class1"; } public String method2() { return "I am a Instance Method (method2) in Class1";... 阅读全文
posted @ 2007-07-07 14:48 jirong 阅读(533) 评论(0) 推荐(0) 编辑
摘要: createPROCEDUREsp_decrypt(@objectnamevarchar(50))ASbeginsetnocounton--CSDN:j9988copyright:2004.07.15--V3.2--破解字节不受限制,适用于SQLSERVER2000存储过程,函数,视图,触发器--修正上一版"视图触发器"不能正确解密错误--发现有错,请E_MAIL:CSDNj9988@tom.co... 阅读全文
posted @ 2007-04-12 11:04 jirong 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 数学函数  1.绝对值   S:select abs(-1) value  O:select abs(-1) value from dual  2.取整(大)   S:select ceiling(-1.001) value   O:select ceil(-1.001) value from dual  3.取整(小)   S:select floor(-1.001) value   O:sel... 阅读全文
posted @ 2006-10-12 11:49 jirong 阅读(274) 评论(0) 推荐(0) 编辑
摘要: <scriptlanguage=\"JavaScript\"><!--self.moveTo(0,0)self.resizeTo(screen.availWidth,screen.availHeight)//--></script> 阅读全文
posted @ 2006-09-23 10:15 jirong 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 1、开发人员如果用到其他库的Table或View,务必在当前库中建立View来实现跨库操作,最好不要直接使用“databse.dbo.table_name”,因为sp_depends不能显示出该SP所使用的跨库table或view,不方便校验。2、开发人员在提交SP前,必须已经使用set showplan on分析过查询计划,做过自身的查询优化检查。 3、高程序运行效率,优化应用程序,在SP编写过... 阅读全文
posted @ 2006-08-22 10:47 jirong 阅读(288) 评论(0) 推荐(0) 编辑
摘要: http://blog.joycode.com/saucer/archive/2006/07/22/79029.aspxhttp://www.gotdotnet.com/codegallery/codegallery.aspx?id=48f35de8-cd92-4ac6-9144-12d5a13f22ff 阅读全文
posted @ 2006-07-22 14:18 jirong 阅读(325) 评论(2) 推荐(0) 编辑
摘要: 常用正则表达式关键词: 正则表达式 "^\d+$"  //非负整数(正整数+0)"^[0-9]*[1-9][0-9]*$"  //正整数"^((-\d+)|(0+))$"  //非正整数(负整数+0)"^-[0-9]*[1-9][0-9]*$"  //负整数"^-?\d+$"    //整数"^\d+(\.\d+)?$"  //非负浮点数(正浮点数+0)"^(([0-9]+\.[0-9]*[1-9... 阅读全文
posted @ 2006-07-01 11:38 jirong 阅读(605) 评论(2) 推荐(0) 编辑