<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet type="text/css" href="css/atom.css"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title type="html"><![CDATA[bluesailor散记]]></title><subtitle type="html"><![CDATA[Good Luck To You!]]></subtitle><id>http://www.lunji.com/</id><link rel="alternate" type="text/html" href="http://www.lunji.com/"/><link rel="self" type="application/atom+xml" href="http://www.lunji.com/atom.xml"/><generator uri="http://www.rainbowsoft.org/" version="1.8 Devo Build 80201">RainbowSoft Studio Z-Blog</generator><updated>2008-08-08T09:56:44+08:00</updated><entry><title type="html"><![CDATA[默认的设置下 SQL Server 不允许进行远程连接可能会导致此失败]]></title><author><name>bluesailor</name><email>a@b.com</email></author><category term="" scheme="http://www.lunji.com/catalog.asp?cate=3" label="常见问题"/><updated>2008-08-08T09:04:24+08:00</updated><published>2008-08-08T09:04:24+08:00</published><summary type="html"><![CDATA[<p>在建立与服务器的连接时出错。在连接到 SQL Server 2005 时，在默认的设置下 SQL Server 不允许进行远程连接可能会导致此失败。 (provider: 命名管道提供程序, error: 40 - 无法打开到 SQL Server 的连接)</p><p>网上搜索了一下方法，都不合适用。</p><p>我的造成此问题的前因：</p><p>服务器原是SQL2000， 再安装了SQL2005， SQL2005 SP2。</p><p>结果发现两个SQL都运行了，其实还是SQL2000在起作用。</p><p>停了SQL2000，重启SQL2005，就报开始那段错误。</p><p>&nbsp;</p><p><img onload="ResizeImage(this,520)" src="http://www.lunji.com/upload/sqlns.jpg" alt="" title=""/></p>...]]></summary><link rel="alternate" type="text/html" href="http://www.lunji.com/post/no-allow-remote-sql2005.html"/><id>http://www.lunji.com/post/no-allow-remote-sql2005.html</id></entry><entry><title type="html"><![CDATA[SQL笔记:charIndex函数]]></title><author><name>bluesailor</name><email>a@b.com</email></author><category term="" scheme="http://www.lunji.com/catalog.asp?cate=17" label="读书笔记"/><updated>2008-08-03T07:40:21+08:00</updated><published>2008-08-03T07:40:21+08:00</published><summary type="html"><![CDATA[<p>declare @strIP varchar(100),@i int,@strSeparator varchar(10)<br />SET @strIP='127.1.1.123' <br />SET @strSeparator='.'</p><p>SET @i=charIndex(@strSeparator,@strIP)<br />select @i</p><p>&nbsp;</p><p>结果：4</p>]]></summary><link rel="alternate" type="text/html" href="http://www.lunji.com/post/sql-charindex.html"/><id>http://www.lunji.com/post/sql-charindex.html</id></entry><entry><title type="html"><![CDATA[SQL笔记:查询当日数据]]></title><author><name>bluesailor</name><email>a@b.com</email></author><category term="" scheme="http://www.lunji.com/catalog.asp?cate=17" label="读书笔记"/><updated>2008-08-03T01:16:52+08:00</updated><published>2008-08-03T01:16:52+08:00</published><summary type="html"><![CDATA[<p>txtsql=&quot;select count(*)&nbsp; from seekfor where datediff(day,sf_date,getdate())=0&quot;<br />txtsql=&quot;select count(*)&nbsp; from seekfor where sf_date&gt;=convert(char(10),getdate(),120) and sf_date&lt;convert(char(10),getdate()+1,120)&quot;</p><p>这两句都是查询当天数据量的</p><p>由于在字段上使用了函数，第一句效率要低些．</p><p>&nbsp;</p>...]]></summary><link rel="alternate" type="text/html" href="http://www.lunji.com/post/today-sql.html"/><id>http://www.lunji.com/post/today-sql.html</id></entry><entry><title type="html"><![CDATA[SQL笔记:dateadd函数]]></title><author><name>bluesailor</name><email>a@b.com</email></author><category term="" scheme="http://www.lunji.com/catalog.asp?cate=17" label="读书笔记"/><updated>2008-08-02T15:08:55+08:00</updated><published>2008-08-02T15:08:55+08:00</published><summary type="html"><![CDATA[<p>declare @dt datetime<br /><br/>select @dt='2008-01-13'<br /><br/>select dateadd(year,20,@dt)</p><p>结果: 2028-01-13 00:00:00.000</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>]]></summary><link rel="alternate" type="text/html" href="http://www.lunji.com/post/dateadd-sql.html"/><id>http://www.lunji.com/post/dateadd-sql.html</id></entry><entry><title type="html"><![CDATA[SQL笔记:convert及replace函数]]></title><author><name>bluesailor</name><email>a@b.com</email></author><category term="" scheme="http://www.lunji.com/catalog.asp?cate=17" label="读书笔记"/><updated>2008-08-02T01:34:47+08:00</updated><published>2008-08-02T01:34:47+08:00</published><summary type="html"><![CDATA[<p>declare @dt datetime<br />set @dt='2008-08-12'<br />select replace(convert(varchar(10),@dt,121),N'-0','-')</p><p>N &nbsp; 在这里表示 &nbsp; Unicode，就是双字节字符。对于西文字符，用一个字节来存储过足够了，对于东方文字字符，就需要两个字节来存储。Unicode &nbsp; 为了统一、规范、方便、兼容，就规定西文字符也用两个字节来存储。 <br /><br />也就是说加 &nbsp; N &nbsp; 就表示字符串用 &nbsp; Unicode &nbsp; 方式存储。</p><p>&nbsp;</p>...]]></summary><link rel="alternate" type="text/html" href="http://www.lunji.com/post/sql-1001.html"/><id>http://www.lunji.com/post/sql-1001.html</id></entry><entry><title type="html"><![CDATA[快速接头]]></title><author><name>bluesailor</name><email>a@b.com</email></author><category term="" scheme="http://www.lunji.com/catalog.asp?cate=11" label="创业之初"/><updated>2008-07-30T09:09:12+08:00</updated><published>2008-07-30T09:09:12+08:00</published><summary type="html"><![CDATA[<p>我们始终坚持以满足客户需求为己任，以最好的质量、最优惠的价格、最周到的服务去开拓快速接头的市扬。我公司技术、质量、销售实力雄厚，管理机制规范，已形成产供销一体化的完善体系。产品质量重于泰山！持续改进、尽善尽美，是我公司的一贯质量方针。我们将不断地研究开发适合市场新功能的各类<a target="_blank" href="http://www.kuaisujietou.com/"><b>快速接头</b></a>产品。</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <b>专业定制:各种规格铜接头, 不锈钢接头&nbsp;</b><br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 欢迎各界朋友联系合作。</p><p><li>地址:上海市黄浦区贵州路263号216</li><li>电话:021-33041025</li><li>邮箱:support@kuaisujietou.com</li></p><p>&nbsp;</p>...]]></summary><link rel="alternate" type="text/html" href="http://www.lunji.com/post/kuaisujietou.html"/><id>http://www.lunji.com/post/kuaisujietou.html</id></entry><entry><title type="html"><![CDATA[win2003新装的IIS不能启动]]></title><author><name>bluesailor</name><email>a@b.com</email></author><category term="" scheme="http://www.lunji.com/catalog.asp?cate=3" label="常见问题"/><updated>2008-07-25T06:26:23+08:00</updated><published>2008-07-25T06:26:23+08:00</published><summary type="html"><![CDATA[<p>&nbsp;一般先看80端口是否被占</p><p><img onload="ResizeImage(this,520)" src="http://www.lunji.com/upload/iisnap1.jpg" alt="" title=""/></p><p>&nbsp;</p><p>解决方法： 控制面板 IIS 管理，组件服务：</p><p><img onload="ResizeImage(this,520)" src="http://www.lunji.com/upload/iiSnap2.jpg" alt="" title=""/></p><p>IIS Admin Service。在其上点右键，选择属性，选择&ldquo;安全&rdquo;选项卡，在启动和激活权限中选择编辑，看到里面的权限只有一个&ldquo;administrators&rdquo;用户组，选择&ldquo;添加&rdquo;，&ldquo;高级&rdquo;，&ldquo;立刻查找&rdquo;，找到&ldquo;NETWORK SERVICE&rdquo;，然后确定。记得勾上这个用户的&ldquo;本地启动&rdquo;和&ldquo;本地激活&rdquo;复选框。最后确定。</p><p>&nbsp;</p><p>&nbsp;</p><p><img onload="ResizeImage(this,520)" src="http://www.lunji.com/upload/iiSnap3.jpg" alt="" title=""/></p>...]]></summary><link rel="alternate" type="text/html" href="http://www.lunji.com/post/win2003-iis.html"/><id>http://www.lunji.com/post/win2003-iis.html</id></entry><entry><title type="html"><![CDATA[arp病毒的清理]]></title><author><name>bluesailor</name><email>a@b.com</email></author><category term="" scheme="http://www.lunji.com/catalog.asp?cate=3" label="常见问题"/><updated>2008-07-25T06:25:23+08:00</updated><published>2008-07-25T06:25:23+08:00</published><summary type="html"><![CDATA[<p>搜索 *.bat, 记录本打开，看里面有没有iframe类似。</p>]]></summary><link rel="alternate" type="text/html" href="http://www.lunji.com/post/arp-clearn.html"/><id>http://www.lunji.com/post/arp-clearn.html</id></entry><entry><title type="html"><![CDATA[甜甜私房猫]]></title><author><name>bluesailor</name><email>a@b.com</email></author><category term="" scheme="http://www.lunji.com/catalog.asp?cate=2" label="生活札记"/><updated>2008-07-24T07:29:27+08:00</updated><published>2008-07-24T07:29:27+08:00</published><summary type="html"><![CDATA[<p>甜甜私房猫</p><object><param name="allowScriptAccess" value="always"></param><param name="wmode" value="transparent"></param><param name="movie" value="http://6.cn/player.swf?flag=0&vid=h5wcqtn8g7Te_jnkRoJWug"></param><embed src="http://6.cn/player.swf?flag=0&vid=h5wcqtn8g7Te_jnkRoJWug" width="480" height="415" allowScriptAccess="always" wmode="transparent"  type="application/x-shockwave-flash" /></object>...]]></summary><link rel="alternate" type="text/html" href="http://www.lunji.com/post/sweet-house-cat.html"/><id>http://www.lunji.com/post/sweet-house-cat.html</id></entry><entry><title type="html"><![CDATA[英特尔发布迅驰2移动计算平台]]></title><author><name>bluesailor</name><email>a@b.com</email></author><category term="" scheme="http://www.lunji.com/catalog.asp?cate=16" label="科技"/><updated>2008-07-16T07:32:49+08:00</updated><published>2008-07-16T07:32:49+08:00</published><summary type="html"><![CDATA[<p>2008年7月15日，英特尔在北京发布了迅驰2移动平台，该平台专为笔记本产品研发，并采用了全新的酷睿2双核处理器。</p><p>　　迅驰2技术对笔记本电脑而言有以下几点提升：采用了全新的处理器和芯片组以提高性能并且延长电脑续航时间；采用更快的802.11n无线草案，并在晚些时候支持WiMAX，以及面向商务用户推出更加易于管理的功能。</p><p>　　在全新的5款处理器中，英特尔采用了45nm制程技术，前端总线最高可达1066MHz，并拥有6MB的二级缓存。其中3款处理器更能将笔记本电脑处理器的功耗降至25瓦，相比之前的CPU降幅达到30%，从而达到延长续航时间的效果。此外这些处理器还拥有深度节能技术，以达到更加省电的目的。</p><p>　　此外，迅驰2平台还支持显卡切换技术。如果一台笔记本电脑上同时拥有独立显卡和集成显卡，用户可以轻松在两者之间进行切换以适应自己需要。</p><p>　　在发布会上，英特尔还展示了40多款迅驰2技术平台的笔记本电脑，迅驰2技术也将促使笔记本迎来新一轮的更新换代。（仲荣）</p>...]]></summary><link rel="alternate" type="text/html" href="http://www.lunji.com/post/xunchi2.html"/><id>http://www.lunji.com/post/xunchi2.html</id></entry></feed>
