2011年11月30日

sqlserver 延期执行sql

摘要: 以下示例在晚上 10:20 (22:20) 执行存储过程 sp_update_job。USE msdb; EXECUTE sp_add_job @job_name='TestJob'; BEGIN WAITFOR TIME '22:20'; EXECUTE sp_update_job @job_name='TestJob',@new_name='UpdatedJob'; END; GO以下示例在两小时的延迟后执行存储过程。注意:Delay最多不超过24小时 BEGIN WAITFOR DELAY '02:00'; 阅读全文

posted @ 2011-11-30 13:03 雨渐渐 阅读(346) 评论(0) 推荐(0) 编辑

2011年11月29日

Python对Xpath的支持

摘要: http://blog.csdn.net/padden_zhang/article/details/6397958 阅读全文

posted @ 2011-11-29 17:28 雨渐渐 阅读(154) 评论(0) 推荐(0) 编辑

log4net异步刷新 TextBox (试运行版)

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Threading;using log4net.Core;namespace log4net_richtextbox{ public partial class Form2 : Form { private static 阅读全文

posted @ 2011-11-29 16:15 雨渐渐 阅读(516) 评论(0) 推荐(0) 编辑

2011年11月28日

声明临时表

摘要: declare @temp_table table ( bookID VARCHAR(10) primary key, book_price float default null, bookName varchar(50) ) insert into @temp_table values('1',50,'c#') insert into @temp_table values('2',null ,'c') select bookID AS '书的编号',isnull(book_price,0) as '书的价 阅读全文

posted @ 2011-11-28 18:35 雨渐渐 阅读(142) 评论(0) 推荐(0) 编辑

定点启动

摘要: #region 每天定点启动的逻辑DateTime dtTomorrow = DateTime.Now.AddDays(1);DateTime date = dtTomorrow.Date;date = date.AddHours(5); TimeSpan ts = date - DateTime.Now; Console.WriteLine("休眠 "+ts +" 启动"); Thread.Sleep(ts); #endregion5点启动 阅读全文

posted @ 2011-11-28 13:44 雨渐渐 阅读(154) 评论(0) 推荐(0) 编辑

2011年11月23日

异步正则

摘要: private MatchCollection mc; private int _timeout; // 最长休眠时间(超时),毫秒 private int sleepCounter; private int sleepInterval; // 休眠间隔,毫秒 private bool _isTimeout; public bool IsTimeout { get { return this._isTimeout; } } public AsynchronousRegex(int timeout) { this._timeout = timeout; this.sleepC... 阅读全文

posted @ 2011-11-23 13:50 雨渐渐 阅读(203) 评论(0) 推荐(0) 编辑

2011年11月22日

海量插入数据时

摘要: SqlBulkCopy 类,海量数据时效率一流 阅读全文

posted @ 2011-11-22 14:33 雨渐渐 阅读(143) 评论(0) 推荐(0) 编辑

2011年11月21日

SQLServer 很慢的可能原因是,设置了数据库内存上限

摘要: 1、登录服务器->打开企业管理器2、打开SQL Server组3、右键点击 (local)本地实例->选择“属性”4、点击“内存”项,在其中“最大值”项中可以设定当前sqlserver可占用的最大内存5、根据自己站点的访问规模以及sqlserver数据库的规模进行适当设定,一般建议限制在128M以下,不要超过256M 阅读全文

posted @ 2011-11-21 18:02 雨渐渐 阅读(1772) 评论(0) 推荐(0) 编辑

2011年11月17日

Access插入数据

摘要: private static void AddToDB(IEnumerable<HotelInfo> list) { OleDbConnection conn = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\dbxc.mdb"); OleDbTransaction trans; conn.Open(); trans = conn.BeginTransaction(); OleD... 阅读全文

posted @ 2011-11-17 21:00 雨渐渐 阅读(246) 评论(0) 推荐(0) 编辑

c#想对地址转绝对地址

摘要: public static bool IsFullUrl(String link) { if (string.IsNullOrEmpty(link)) { return false; } link = link.Trim().ToLowerInvariant(); return link.StartsWith("http://") || link.StartsWith("https://"); } public s... 阅读全文

posted @ 2011-11-17 20:44 雨渐渐 阅读(304) 评论(0) 推荐(0) 编辑

导航