<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_Alive</title><subtitle type="text">Because black represent reality!</subtitle><id>http://feed.cnblogs.com/blog/u/20676/rss</id><updated>2010-06-27T12:53:53Z</updated><author><name>肥猫</name><uri>http://www.cnblogs.com/wayne1017/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/wayne1017/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/20676/rss"/><entry><id>http://www.cnblogs.com/wayne1017/archive/2007/05/15/746573.html</id><title type="text">一个很棒的ORACLE参数绑定问题的解决</title><summary type="text">如果表（在数据库中）中的列允许为空，就不能测试参数值是否“等于”空。相反，需要写一个 WHERE 子句，测试列和参数是否都为空。下面的 SQL 语句返回一些行，它们的 LastName 列等于赋给 @LastName 参数的值，或者 LastName 列和 @LastName 参数都为空。&#xD;SELECT * FROM Customers　WHERE (LastName = @LastName) OR (LastName IS NULL AND @LastName IS NULL)</summary><published>2007-05-14T18:04:00Z</published><updated>2007-05-14T18:04:00Z</updated><author><name>肥猫</name><uri>http://www.cnblogs.com/wayne1017/</uri></author><link rel="alternate" href="http://www.cnblogs.com/wayne1017/archive/2007/05/15/746573.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/wayne1017/archive/2007/05/15/746573.html"/></entry><entry><id>http://www.cnblogs.com/wayne1017/archive/2007/03/20/678724.html</id><title type="text">Hadoop学习笔记二  安装部署</title><summary type="text">本文主要是以安装和使用hadoop0.12.0为例，指出在部署Hadoop的时候容易遇到的问题以及如何解决。</summary><published>2007-03-19T16:00:00Z</published><updated>2007-03-19T16:00:00Z</updated><author><name>肥猫</name><uri>http://www.cnblogs.com/wayne1017/</uri></author><link rel="alternate" href="http://www.cnblogs.com/wayne1017/archive/2007/03/20/678724.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/wayne1017/archive/2007/03/20/678724.html"/></entry><entry><id>http://www.cnblogs.com/wayne1017/archive/2007/03/18/668768.html</id><title type="text">Hadoop学习笔记一  简要介绍</title><summary type="text">    言归正传，先说一下Hadoop的来龙去脉。谈到Hadoop就不得不提到Lucene和Nutch。首先，Lucene并不是一个应用程序，而是提供了一个纯Java的高性能全文索引引擎工具包，它可以方便的嵌入到各种实际应用中实现全文搜索/索引功能。Nutch是一个应用程序，是一个以Lucene为基础实现的搜索引擎应用</summary><published>2007-03-17T18:04:00Z</published><updated>2007-03-17T18:04:00Z</updated><author><name>肥猫</name><uri>http://www.cnblogs.com/wayne1017/</uri></author><link rel="alternate" href="http://www.cnblogs.com/wayne1017/archive/2007/03/18/668768.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/wayne1017/archive/2007/03/18/668768.html"/></entry><entry><id>http://www.cnblogs.com/wayne1017/archive/2007/03/09/665931.html</id><title type="text">Linux下网络传输测速程序小记</title><summary type="text">最近需要在linux下做一个网络测速的小程序，将服务端内存中缓存的一个大文件整个的从服务端发送到客户端，并缓存到客户端的内存中，以此抛开硬盘读取速度的影响，测量网络实际的传输速度。&#xD;小程序分为一个服务端server和一个客户端client,网上有很多类似的示例程序，但多少都有问题，后面我会提到。</summary><published>2007-03-08T18:09:00Z</published><updated>2007-03-08T18:09:00Z</updated><author><name>肥猫</name><uri>http://www.cnblogs.com/wayne1017/</uri></author><link rel="alternate" href="http://www.cnblogs.com/wayne1017/archive/2007/03/09/665931.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/wayne1017/archive/2007/03/09/665931.html"/></entry><entry><id>http://www.cnblogs.com/wayne1017/archive/2007/01/14/620070.html</id><title type="text">FC5下Attansic网卡驱动问题的解决</title><summary type="text">本来以为很简单的安装FC5系统的工作，因为Attansic千兆网卡的驱动问题折腾了很久，现在就把整个的过程记录下来，做个参考吧。&#xD;</summary><published>2007-01-14T07:25:00Z</published><updated>2007-01-14T07:25:00Z</updated><author><name>肥猫</name><uri>http://www.cnblogs.com/wayne1017/</uri></author><link rel="alternate" href="http://www.cnblogs.com/wayne1017/archive/2007/01/14/620070.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/wayne1017/archive/2007/01/14/620070.html"/></entry><entry><id>http://www.cnblogs.com/wayne1017/archive/2006/11/05/550700.html</id><title type="text">ORACLE的工作机制（转载）</title><summary type="text">我们从一个用户请求开始讲,ORACLE的完整的工作机制是怎样的,首先一个用户进程发出一个连接请求,如果使用的是主机命名或者是本地服务命中的主机名使用的是机器名(非IP地址)，那么这个请求都会通过DNS服务器或HOST文件的服务名解析然后传送到ORACLE监听进程,监听进程接收到用户请求后会采取两种方式来处理这个用户请求,下面我们分专用服务器和共享服务器分别采用这两种方式时的情况来讲：</summary><published>2006-11-05T07:25:00Z</published><updated>2006-11-05T07:25:00Z</updated><author><name>肥猫</name><uri>http://www.cnblogs.com/wayne1017/</uri></author><link rel="alternate" href="http://www.cnblogs.com/wayne1017/archive/2006/11/05/550700.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/wayne1017/archive/2006/11/05/550700.html"/></entry><entry><id>http://www.cnblogs.com/wayne1017/archive/2006/09/15/505030.html</id><title type="text">关于Access的左连接</title><summary type="text">    这篇随笔没有什么深奥的技术要讨论，只是自己一个知识上的盲点：不知道在Access中如何进行左连接的操作。通过在网上搜索，最后在CSDN上找到了自己要的答案，因此觉得有必要记录下来：）</summary><published>2006-09-15T15:23:00Z</published><updated>2006-09-15T15:23:00Z</updated><author><name>肥猫</name><uri>http://www.cnblogs.com/wayne1017/</uri></author><link rel="alternate" href="http://www.cnblogs.com/wayne1017/archive/2006/09/15/505030.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/wayne1017/archive/2006/09/15/505030.html"/></entry><entry><id>http://www.cnblogs.com/wayne1017/archive/2006/09/04/494401.html</id><title type="text">学习Java的困惑</title><summary type="text">     一直以来都在学习Java，可是一直以来，也同样困惑着。因为不清楚学了以后能在哪些地方可用。在ChinaJavaWorld看过不少帖子，觉得似乎用的最多的地方也就是web开发和J2ME的开发了，其他的似乎用到Java的很少。于是自己就很动摇，</summary><published>2006-09-04T07:31:00Z</published><updated>2006-09-04T07:31:00Z</updated><author><name>肥猫</name><uri>http://www.cnblogs.com/wayne1017/</uri></author><link rel="alternate" href="http://www.cnblogs.com/wayne1017/archive/2006/09/04/494401.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/wayne1017/archive/2006/09/04/494401.html"/></entry><entry><id>http://www.cnblogs.com/wayne1017/archive/2006/08/28/488853.html</id><title type="text">硬盘安装Ubuntu</title><summary type="text">同样，这个也是我以前写的一个小心得，也把它给贴了过来:)&#xD;大家一般都是从网上download  ISO然后刻盘进行linux的安装，这里介绍一下如何从硬盘安装linux。这里以Ubuntu  Breezy版本为例，其实各个发行版的硬盘安装都是大同小异的：）</summary><published>2006-08-28T13:54:00Z</published><updated>2006-08-28T13:54:00Z</updated><author><name>肥猫</name><uri>http://www.cnblogs.com/wayne1017/</uri></author><link rel="alternate" href="http://www.cnblogs.com/wayne1017/archive/2006/08/28/488853.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/wayne1017/archive/2006/08/28/488853.html"/></entry><entry><id>http://www.cnblogs.com/wayne1017/archive/2006/08/28/488844.html</id><title type="text">Ubuntu下Eclipse的安装</title><summary type="text">很久以前写的一篇linux上配置eclipse的小心得，曾经贴在学校的论坛上。现在也把它放在这儿，算是聚合资源，呵呵。</summary><published>2006-08-28T13:45:00Z</published><updated>2006-08-28T13:45:00Z</updated><author><name>肥猫</name><uri>http://www.cnblogs.com/wayne1017/</uri></author><link rel="alternate" href="http://www.cnblogs.com/wayne1017/archive/2006/08/28/488844.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/wayne1017/archive/2006/08/28/488844.html"/></entry></feed>
