摘要:
http://happylimei.blogbus.com/logs/66329976.html 阅读全文
摘要:
SELECT * FROM ::fn_helpcollations() 阅读全文
摘要:
使用 SqlDataAdapter的Update实现更新添加数据代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--StringBuilderobjSB=newStringBuilder();objSB.Append("select*From");ob... 阅读全文
摘要:
今天遇到一个关于数据的问题。客户需要一个很有特色的报表。我要从现有的数据中获得他们需要的结果。用了一天的时间还是没有把这个需求做完。明天上班还要处理这个问题。每天和数据打交道,打得多了,就会摸清它们的脾气的。开始接触数据库时,我就是在边使用边学习中工作的。工作中需要用到的,就开始找资料学习。慢慢的对于sql server渐渐的熟悉了。总感觉和数据打交道,是很有意思的。在现在的公司,又让我对数据库有... 阅读全文
摘要:
Internet信息服务日志1、FTP日志默认位置:%systemroot%\system32\logfiles\msftpsvc1\,默认每天一个日志2、WWW日志默认位置:%systemroot%\system32\logfiles\w3svc1\,默认每天一个日志 阅读全文
摘要:
阅读全文
摘要:
摘自:http://www.vbdotnetheaven.com/UploadFile/hima_.net/WebPageExecutioninIIS11262006235902PM/WebPageExecutioninIIS.aspxASP.Net Page Life CycleHow the simple web page execution happens? As all of us kn... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--withtas(select1id,'Child1'childunionselect1id,'Child2'unionselect1id,'Child3'unionselect2id,'Child1'... 阅读全文
摘要:
IE: KE = document.selection; KE_RANGE = KE.createRange(); KE_RANGE_TEXT = KE_RANGE.text; var startC = KE_RANGE.parentElement().parentNode; FF: KE =window.getSelection(); KE_RANGE = KE.getRange... 阅读全文
摘要:
1. 使数据库支持全文检索exec sp_fulltext_database 'Enable'2.定义表的全文检索目录和索引字段。CREATE FULLTEXT INDEX ON TableName KEY INDEX PK_IndexName ON DB WITH CHANGE_TRACKING AUTOALTER FULLTEXT INDEX ON TableName ADD ColumnNa... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--createtable#TempTable(PersonIDint,KeChengvarchar(20),FenShufloat)insertinto#TempTableselect1,'Math',... 阅读全文
摘要:
代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--declare@atable(idint,namevarchar(50))insertinto@a(id,name)select'1','a'unionallselect'1','a'unionall... 阅读全文