上一页 1 ··· 9 10 11 12 13 14 15 下一页
摘要: 使用存储过程终止: 在查询分析器下创建终止数据库所有接连的存储过程,通过调用该存储过程可以关闭所有使用该数据库的连接操作。 --创建终止使用数据库下所有进程的存储过程,参数为数据库名称 use master go create proc KillSpByDbName(@dbname varchar(20)) as begin declare @sql nv... 阅读全文
posted @ 2009-03-17 12:00 空紫竹 阅读(1200) 评论(0) 推荐(0) 编辑
摘要: 按全文匹配方式查询 字段名 LIKE N'%[^a-zA-Z0-9]China[^a-zA-Z0-9]%' OR 字段名 LIKE N'%[^a-zA-Z0-9]China' OR 字段名 LIKE N'China[^a-zA-Z0-9]%' OR 字段名 LIKE N'China 阅读全文
posted @ 2009-03-17 12:00 空紫竹 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 摘自:http://shirlly.javaeye.com/blog/221927 测试过,很好使用 fckeditor的官方网站去下载最新版本: http://www.fckeditor.net/ 和其他脚本类的程序一样,fckeditor的安装其实就是源代码的拷贝。我们按照官方的方法,在网站根目录下建立fckeditor这样一个文件夹,然后把下载下来的文件包释放到该文件夹中。 安装好... 阅读全文
posted @ 2009-03-15 10:32 空紫竹 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 网摘自:http://www.chinaz.com/Program/Asp/0Z33DX2008.html 1、去http://www.aspprogram.cn/soft.asp?id=38这个地址下载fckeditor在线编辑器(请先杀毒,后使用) 2、fckeditor配置 a、为了使用根目录,我们将IIS的默认网站设置为站点,指向fckeditor(这个可改名)所在的目录。 b、现... 阅读全文
posted @ 2009-03-11 10:55 空紫竹 阅读(890) 评论(2) 推荐(0) 编辑
摘要: DECLARE @m nvarchar(max) SET @m = N'DECLARE @t TABLE (ID int);INSERT INTO @t VALUES (1);SELECT * FROM @t T' EXEC sp_executesql @m 阅读全文
posted @ 2009-02-24 13:28 空紫竹 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 引自: http://hi.baidu.com/zhxhdean/blog/item/7b824e33b6837744ad4b5f27.html 说到SQL Server索引就惭愧,开发都这么久了,一直惧怕索引。感觉索引是个很难的东西,一直都没有接触,只是听别人说,合理的使用索引可以很好的提高查询速度等。今天特意整理了SQL Server索引的一些使用技巧。 一、聚簇索引(clus... 阅读全文
posted @ 2009-01-16 14:38 空紫竹 阅读(1163) 评论(1) 推荐(0) 编辑
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->Create PROCEDURE [dbo].[usp_PagingLarge] ( @TableNames VARCHAR(200), ... 阅读全文
posted @ 2009-01-16 11:29 空紫竹 阅读(502) 评论(0) 推荐(0) 编辑
摘要: The description for Event ID ( 34700 ) in Source ( BusinessObjects_crystalras ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display mess... 阅读全文
posted @ 2009-01-16 08:50 空紫竹 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 鼠标相关事件 onclick 当鼠标单击时触发此事件 ondblclick 当鼠标双击时触发此事件 onmousedown 当按下鼠标时触发此事件 onmouseup 当鼠标按下后松开鼠标时触发此事件 onmouseover 当鼠标移动到某对象范围的上方时触发此事件 onmousemove 当鼠标移动时触发此事件 onmouseout 当鼠标离开某对象范围时触发此事件 键盘相关事... 阅读全文
posted @ 2008-12-25 14:05 空紫竹 阅读(218) 评论(0) 推荐(0) 编辑
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> string strSql = ""; SqlConnection sqlCon = new SqlConnection(HeadStartConnSt... 阅读全文
posted @ 2008-12-18 11:38 空紫竹 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 今天我上网看到这个信息,随手把它记录在我的博客中。 看到这个新闻,我认为jQuery的使用会更加的广泛。 阅读全文
posted @ 2008-11-24 09:42 空紫竹 阅读(182) 评论(0) 推荐(0) 编辑
摘要: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->declare @strtrannote nvarchar(100); declare @strlocation nvarchar(100); declare @tempstr nvarchar... 阅读全文
posted @ 2008-11-13 16:30 空紫竹 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 进行分组统计汇总,可以在GROUP BY子句中使用WITH ROLLUP和WITH CUBE参数。 ROLLUP指定在结果集内不仅包含由GROUP BY提供的行,还包含汇总行。按层次结构顺序,从组内的最低级别到最高级别汇总组。 而CUBE参数则在使用ROLLUP参数所返回结果集的基础上,再将每个可能的组和子组组合在结果集内返回。 例如,假设dbo.table_1表中存在下列数据: name ... 阅读全文
posted @ 2008-11-12 14:37 空紫竹 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 进程信息库网址:http://www.processlib.net/index.html 阅读全文
posted @ 2008-11-12 09:14 空紫竹 阅读(147) 评论(0) 推荐(0) 编辑
摘要: ALCMTR.EXE是RealTek AC97声卡相关监视服务。 进程文件: ALCMTR 或者 ALCMTR.EXE 进程名称: Realtek Event Monitor 描述: ALCMTR.EXE是RealTek AC97声卡相关监视服务。 出品者: Realtek 属于: Realtek Multimedia 系统进程: 否 后台程序: 是 使用网络: 否 ... 阅读全文
posted @ 2008-11-12 09:13 空紫竹 阅读(268) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 下一页