上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页
  2012年6月28日
摘要: 1.软件试用注册码已过期,可以在注册表中删除注册信息后重新试用,方法:开始->运行>regedit Ctrl+F 输入关键字2. 修改Mysql安装文件中的my.ini 文件中的一个节点为[mysqld]max_allowed_packet = 512M# The TCP/IP Port the ... 阅读全文
posted @ 2012-06-28 09:42 cw_volcano 阅读(241) 评论(0) 推荐(0) 编辑
  2012年6月26日
摘要: Have you ever faced a situation where you wanted to modify your existing table and was bugged with following error popup.Error were encountered during the save process. Some database objects were not saved.This is because by default saving changes to the table that requires table re-creation is disa 阅读全文
posted @ 2012-06-26 17:10 cw_volcano 阅读(2524) 评论(0) 推荐(0) 编辑
  2012年6月20日
摘要: Check out the [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\Excel] located registry REG_DWORD "TypeGuessRows". That's the key to not letting Excel use only the first 8 rows to guess the columns data type. Set this value to 0 to scan all rows. This might hurt performance.I chan 阅读全文
posted @ 2012-06-20 10:05 cw_volcano 阅读(227) 评论(1) 推荐(0) 编辑
  2012年6月18日
摘要: Generally one question is faced by very developer what is asp.net page life cycle every body know very well like sequence of asp.net page event likepage_initPage_loadPage_renderPage_unloadit is fine for standalone pages but if a page have master page then what the page life cycle? confuse!!!Below is 阅读全文
posted @ 2012-06-18 18:11 cw_volcano 阅读(161) 评论(0) 推荐(0) 编辑
  2012年6月14日
摘要: The UPSERT command inserts rows that don’t exist and updates the rows that do exist. The Word UPSERT is a fusion of the words UPDATE and INSERT. UPSERT was officially introduced in the SQL:2003 standard.IF FOUND THEN UPDATEELSE INSERT;In SQL Server 2008, Microsoft introduces the UPSERT functiona... 阅读全文
posted @ 2012-06-14 10:15 cw_volcano 阅读(234) 评论(0) 推荐(0) 编辑
摘要: UPSERT functionality refers to either updating table rows based on some search condition, or inserting new rows if the search condition is not satisfied. This is intuitively seen from the word UPSERT - a combination of UPDATE (needed rows are present) or INSERT (needed rows are not present).The most 阅读全文
posted @ 2012-06-14 10:09 cw_volcano 阅读(444) 评论(0) 推荐(0) 编辑
  2012年6月5日
摘要: 目标:将所有文件中的代码Gratte.Aurora.SHlib.labelText("IR_Rep_Index_TableHeader_ID") 替换为Gratte.Aurora.SHlib.labelText("IR_Rep_Index_TableHeader_ID",3)工具:ULtraEdit操作:Search->Replace in Files->Find What:Gratte.Aurora.SHlib.labelText("^(*^)" Replace With:Gratte.Aurora.SHlib.labe 阅读全文
posted @ 2012-06-05 15:35 cw_volcano 阅读(367) 评论(0) 推荐(0) 编辑
  2012年6月4日
摘要: using System;using System.Data;using System.Configuration;using System.Linq;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.HtmlControls;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Data;using System.Data.SqlClient;namespace 阅读全文
posted @ 2012-06-04 11:12 cw_volcano 阅读(264) 评论(0) 推荐(0) 编辑
  2012年6月2日
摘要: SELECT TABLE_NAME AS TableName , COLUMN_NAME As ColumnName, CHARACTER_MAXIMUM_LENGTH As MaxCharacters FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name IN (SELECT name FROM sys.Tables Where name like '%Translation') AND ... 阅读全文
posted @ 2012-06-02 22:17 cw_volcano 阅读(248) 评论(0) 推荐(0) 编辑
  2012年5月31日
摘要: /// <summary> /// 判断一个字符串是否为合法整数(不限制长度) /// </summary> /// <param name="s">字符串</param> /// <returns></returns> public static bool IsInteger(string s) { string pattern = @"^\d*$"; return Regex.IsMatch(s,pattern); ... 阅读全文
posted @ 2012-05-31 16:26 cw_volcano 阅读(6855) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页