<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/s_ongfei" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/s_ongfei" type="application/rss+xml"></fs:self_link><lastBuildDate>Wed, 03 Jun 2009 12:11:00 GMT</lastBuildDate><title>s_ongfei的专栏</title><link>http://blog.csdn.net/s_ongfei/</link><item><title>C# 操作 Excel(tlbimp.exe)</title><link>http://blog.csdn.net/s_ongfei/archive/2009/06/03/4238607.aspx</link><wfw:comment>http://blog.csdn.net/s_ongfei/comments/4238607.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/s_ongfei/comments/commentRss/4238607.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4238607</trackback:ping><description>C# 操作 Excel(tlbimp.exe)2008-07-25 15:45&lt;br /&gt;首先将excel.exe copy 到 ..\Microsoft Visual Studio .NET 2003\SDK\v1.1\Bin目录下&lt;br /&gt;利用.net 中带的工具在命令提示符下执行tlbimp excel.exe.这样就不会因为你的Excel是xp或2000的不同要去找不同的*.olb文件，还有一点就是因为在2000以后的版本中没有了excel9.olb这个文件了。&lt;br /&gt;&lt;br /&gt;通过执行tlbimp excel.exe后我们会得到excel.dll文件。&lt;br /&gt;&lt;br /&gt;只要有了这个Excel.dll，现在我们就能使用Excel的各种操作函数了。 &lt;br /&gt;下面就让我们具体看看C#是如何使用这些东东吧。 &lt;br /&gt;1. 创建一个新Excel的Application:&lt;br /&gt;Application exc = new Application();&lt;br /&gt;if (exc == null) {&lt;br /&gt;Console.WriteLine(&quot;ERROR: E&lt;img src =&quot;http://blog.csdn.net/s_ongfei/aggbug/4238607.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/234315724/s_ongfei/csdn.net/s.gif?r=http://blog.csdn.net/s_ongfei/archive/2009/06/03/4238607.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/s_ongfei/234315724/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/s_ongfei/234315724/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 03 Jun 2009 20:11:00 +0800</pubDate><author>宋飞</author><comments>http://blog.csdn.net/s_ongfei/archive/2009/06/03/4238607.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/s_ongfei/archive/2009/06/03/4238607.aspx</guid><dc:creator>宋飞</dc:creator><fs:srclink>http://blog.csdn.net/s_ongfei/archive/2009/06/03/4238607.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/s_ongfei/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/s_ongfei/~1068171/234315724/1068171</fs:itemid></item><item><title>Oracle触发器介绍</title><link>http://blog.csdn.net/s_ongfei/archive/2009/05/31/4228681.aspx</link><wfw:comment>http://blog.csdn.net/s_ongfei/comments/4228681.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/s_ongfei/comments/commentRss/4228681.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4228681</trackback:ping><description>&lt;br /&gt;语句级触发器&lt;br /&gt;我们先看一个AFTER-INSERT-STATEMENT触发器：&lt;br /&gt;CREATE OR REPLACE TRIGGER temp_ais&lt;br /&gt;AFTER INSERT ON TEMP&lt;br /&gt;BEGIN&lt;br /&gt;    dbms_output.put_line('executing temp_ais');&lt;br /&gt;END;&lt;br /&gt;看一下下面语句的结果：&lt;br /&gt;SQL&gt; set feedback off&lt;br /&gt;SQL&gt; INSERT INTO temp VALUES (1);          -- insert 1 row&lt;br /&gt;executing temp_ais&lt;br /&gt;SQL&gt; INSERT INTO temp VALUES (1);          -- insert 1 row&lt;br /&gt;executing temp_ais&lt;br /&gt;SQL&gt; INSERT INTO temp SELECT * FROM temp;  -- insert 2 rows&lt;br /&gt;executing temp_ais&lt;img src =&quot;http://blog.csdn.net/s_ongfei/aggbug/4228681.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/234315725/s_ongfei/csdn.net/s.gif?r=http://blog.csdn.net/s_ongfei/archive/2009/05/31/4228681.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/s_ongfei/234315725/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/s_ongfei/234315725/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 31 May 2009 23:50:00 +0800</pubDate><author>宋飞</author><comments>http://blog.csdn.net/s_ongfei/archive/2009/05/31/4228681.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/s_ongfei/archive/2009/05/31/4228681.aspx</guid><dc:creator>宋飞</dc:creator><fs:srclink>http://blog.csdn.net/s_ongfei/archive/2009/05/31/4228681.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/s_ongfei/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/s_ongfei/~1068171/234315725/1068171</fs:itemid></item><item><title>《潜伏》里的哪些事儿</title><link>http://blog.csdn.net/s_ongfei/archive/2009/05/03/4144949.aspx</link><wfw:comment>http://blog.csdn.net/s_ongfei/comments/4144949.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/s_ongfei/comments/commentRss/4144949.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4144949</trackback:ping><description>&lt;br /&gt;&lt;br /&gt;《潜伏》并不是间谍片，而是一部不可多得的职场教程。余则成的经历，有绝对的现实意义，他用亲身体验，教导我们如何在险恶的职场生存。 &lt;br /&gt;而现今的职场，比余则成面临的环境更糟糕，我们都是在狂涛骇浪里潜伏的小人物。 &lt;br /&gt;&lt;br /&gt;所以，研究专家“余则成”是怎么说，怎么做的吧。 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;1、办公室里只有两种人，主角和龙套。 &lt;br /&gt;在《潜伏》里，每个角色都有个性。只龙套非但没性格而且还专业送死。 &lt;br /&gt;&lt;br /&gt;职场上也一样，想要过的轻松，不想往上爬，那就只能做一辈子的龙套。 &lt;br /&gt;作龙套的坏处就是：送死你先去，功劳全没有，裁员先考虑。 &lt;br /&gt;现在的职场绝不是养懒人的地方，你要比别人生存的好，就唯有当主角，让别人去做龙套。 &lt;br /&gt;你不能踩着别人肩膀，就只能做他人垫背。 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2、每个人都要有大志，就算要毁灭世界也可以。 &lt;br /&gt;胸怀大志是做主角的首要条件。 &lt;br /&gt;譬如余则成的信仰，站长的贪钱，马奎和陆桥山要当副站长，李涯为了党国事业，&lt;img src =&quot;http://blog.csdn.net/s_ongfei/aggbug/4144949.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/s_ongfei/234315726/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/s_ongfei/234315726/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 03 May 2009 19:38:00 +0800</pubDate><author>宋飞</author><comments>http://blog.csdn.net/s_ongfei/archive/2009/05/03/4144949.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/s_ongfei/archive/2009/05/03/4144949.aspx</guid><dc:creator>宋飞</dc:creator><fs:srclink>http://blog.csdn.net/s_ongfei/archive/2009/05/03/4144949.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/s_ongfei/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/s_ongfei/~1068171/234315726/1068171</fs:itemid></item><item><title>Hibernate学习(二)：heibernate核心接口</title><link>http://blog.csdn.net/s_ongfei/archive/2009/04/09/4059931.aspx</link><wfw:comment>http://blog.csdn.net/s_ongfei/comments/4059931.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/s_ongfei/comments/commentRss/4059931.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4059931</trackback:ping><description>&lt;br /&gt;前一篇文章中的例子中基本上已经涵盖了对数据库的增删改查操作，我们通过Hibernate操纵数据库时应该按照一个什么样的步骤来呢？要用到Hibernate的哪些API呢？一般来说，所有的Hibernate应用都会访问6个核心接口或者类，它们是：Configuration、SessionFactory、Session、Transaction、Query和Criteria，它们的关系如下图所示。&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;实际上上图的表述不是很准确，因为除了Configuration之外其它的都是接口，接口是不能被实例化的，只能说是创建了一个这个接口类型的实例。从前面的文章中摘取几个代码片段来看：&lt;br /&gt;static{&lt;br /&gt;       try{&lt;br /&gt;           Configuration configuration=new Configuration();&lt;br /&gt;            sessionFactory=&lt;br /&gt;configuration.configure().buildSessionFactory();&lt;br /&gt;&lt;img src =&quot;http://blog.csdn.net/s_ongfei/aggbug/4059931.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/s_ongfei/234315727/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/s_ongfei/234315727/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 10 Apr 2009 00:33:00 +0800</pubDate><author>宋飞</author><comments>http://blog.csdn.net/s_ongfei/archive/2009/04/09/4059931.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/s_ongfei/archive/2009/04/09/4059931.aspx</guid><dc:creator>宋飞</dc:creator><fs:srclink>http://blog.csdn.net/s_ongfei/archive/2009/04/09/4059931.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/s_ongfei/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/s_ongfei/~1068171/234315727/1068171</fs:itemid></item><item><title>hibernate集合映射inverse和cascade详解 （转载）</title><link>http://blog.csdn.net/s_ongfei/archive/2009/04/09/4059875.aspx</link><wfw:comment>http://blog.csdn.net/s_ongfei/comments/4059875.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/s_ongfei/comments/commentRss/4059875.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4059875</trackback:ping><description>hibernate集合映射inverse和cascade详解 （转载）﻿4. hibernate如何根据pojo来更新数据库&lt;br /&gt;&lt;br /&gt;4.0 在commit/flush之前，hibernate不会对pojo对象作神秘的处理。&lt;br /&gt;4.0.1 在select查询出pojo时，hibernate根据“字段--属性”的对应关系，用字段的值填充pojo的属性；&lt;br /&gt;然后根据“关系标记”生成sql语句从relationTable中查询出满足条件的relationPojo，并把这些relatinPojo&lt;br /&gt;放到“关系属性”中。这个过程是机械的。&lt;br /&gt;&lt;br /&gt;4.0.2 在pojo对象被查出来后，到commit(或flush)之前，它将是一个普通的java对象，hibernate不会做额外的手脚。&lt;br /&gt;比如，不会限制你设置一个属性的值为null或其它任何值&lt;br /&gt;在集合类Set的add(object)操作时， 不会改变object的值，不会检查参数object是否是一个pojo对象&lt;br /&gt;设置mainPojo的一个“桥属性”的值，不会自动设置&lt;img src =&quot;http://blog.csdn.net/s_ongfei/aggbug/4059875.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/s_ongfei/234315728/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/s_ongfei/234315728/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 10 Apr 2009 00:16:00 +0800</pubDate><author>宋飞</author><comments>http://blog.csdn.net/s_ongfei/archive/2009/04/09/4059875.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/s_ongfei/archive/2009/04/09/4059875.aspx</guid><dc:creator>宋飞</dc:creator><fs:srclink>http://blog.csdn.net/s_ongfei/archive/2009/04/09/4059875.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/s_ongfei/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/s_ongfei/~1068171/234315728/1068171</fs:itemid></item><item><title>SSH项目之旅session问题解决</title><link>http://blog.csdn.net/s_ongfei/archive/2009/03/28/4032475.aspx</link><wfw:comment>http://blog.csdn.net/s_ongfei/comments/4032475.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/s_ongfei/comments/commentRss/4032475.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4032475</trackback:ping><description>SSH项目(6.session问题解决) &lt;br /&gt;2008-07-20 22:25:27,531 INFO [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] - Loading XML bean definitions from class path resource [org/springframework/jdbc/support/sql-error-codes.xml]&lt;br /&gt;2008-07-20 22:25:27,609 INFO [org.springframework.jdbc.support.SQLErrorCodesFact&lt;br /&gt;ory] - SQLErrorCodes loaded: [DB2, HSQL, MS-SQL, MySQL, Oracle, Informix, PostgreSQL, Sybase]&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2008-07-20 22:26:48,437 WARN [org.hibernate.jdbc.ConnectionManager]&lt;img src =&quot;http://blog.csdn.net/s_ongfei/aggbug/4032475.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/s_ongfei/234315729/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/s_ongfei/234315729/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 29 Mar 2009 01:24:00 +0800</pubDate><author>宋飞</author><comments>http://blog.csdn.net/s_ongfei/archive/2009/03/28/4032475.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/s_ongfei/archive/2009/03/28/4032475.aspx</guid><dc:creator>宋飞</dc:creator><fs:srclink>http://blog.csdn.net/s_ongfei/archive/2009/03/28/4032475.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/s_ongfei/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/s_ongfei/~1068171/234315729/1068171</fs:itemid></item><item><title>入对行，跟对人,努力喜欢你周围的人</title><link>http://blog.csdn.net/s_ongfei/archive/2009/03/18/4000983.aspx</link><wfw:comment>http://blog.csdn.net/s_ongfei/comments/4000983.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/s_ongfei/comments/commentRss/4000983.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4000983</trackback:ping><description> 2009.03.18  来自：搜狐博客　    目前已经有两任前微软中国CEO做客搜狐IT博客训练营。一位是现任新闻集团全球副总裁的高群耀先生，一位是现任新华都集团总裁的唐骏先生。同一个背景，他们眼里的职业规划观又有什么异同呢？两位都是极为成功的IT职业经理人，都擅长演讲，都具有极强亲和力。唐骏在IT从业者和媒体眼里出现的频率更多些，更会“来事儿”，高群耀则相对低调和内敛。高总谈到的入对行和跟对人，想必是多年职场经验之后的黄金法则。我个人也这么认为，我深有体会，老方就是一个这样让人尊敬的老板，老方说过，除了你的父母和妻子，上司是和你这辈子待的时间最长的第三种人。高总说，一个好的老板，一般来说是一个老师、一个教练、一个朋友、一个力量的源泉，有事会找到他，你从他那里回来就特别精神，积极性就上来，所以想找一个好的老板，他具有这些部分，你就成功了一半。高总的三个最好让他难忘。所服务的公司从最开始的Autodesk，到后来的微软，到今天的新闻集团，这些公司不管是在公司本身的崛起、科技带来的变化、全球化以及在中国的运营，都&lt;img src =&quot;http://blog.csdn.net/s_ongfei/aggbug/4000983.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/s_ongfei/234315730/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/s_ongfei/234315730/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 18 Mar 2009 20:28:00 +0800</pubDate><author>宋飞</author><comments>http://blog.csdn.net/s_ongfei/archive/2009/03/18/4000983.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/s_ongfei/archive/2009/03/18/4000983.aspx</guid><dc:creator>宋飞</dc:creator><fs:srclink>http://blog.csdn.net/s_ongfei/archive/2009/03/18/4000983.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/s_ongfei/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/s_ongfei/~1068171/234315730/1068171</fs:itemid></item><item><title>二十五个原则</title><link>http://blog.csdn.net/s_ongfei/archive/2009/03/15/3992927.aspx</link><wfw:comment>http://blog.csdn.net/s_ongfei/comments/3992927.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/s_ongfei/comments/commentRss/3992927.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3992927</trackback:ping><description>二十五个原则 &lt;br /&gt;1．不断地为自己与别人建立梦想。&lt;br /&gt;2．把目标具体化、数字化、形象化、期限化。&lt;br /&gt;3．为你的成功设计并遵循一个好的策略。&lt;br /&gt;4．相信你一定做得到。&lt;br /&gt;5．做出一个高标准的承诺并且坚持始终。&lt;br /&gt;6．成为一个100％的忠实用户。&lt;br /&gt;7．每天听系统的录音带和CD，并在可能时经常购买。&lt;br /&gt;8．每天花l5分钟或更多时间看系统推荐的书籍。&lt;br /&gt;9．逢会必到，并做笔记。&lt;br /&gt;10．成为一个积极的行动者，每月至少讲30次计划。&lt;br /&gt;11．要复制那些紧跟系统的你的上级，并使自己成为可被复制的领导人。&lt;br /&gt;12．只把积极的信息向下传，绝不把消极思想、言论向下级部门和旁部门传播。&lt;br /&gt;13．记住：永远、永远、永远不受旁部门干扰，永远。&lt;br /&gt;14．推崇与忠诚。&lt;br /&gt;15．建立个人生意要保持一个高姿态。&lt;br /&gt;16．塑造良好的专业形象。&lt;br /&gt;17．增强你的相关能力：亲和力、影响力、个人魅力。&lt;br /&gt;18．建立牢固的友谊，并要与团队的成员保持非常紧密的个人关系。&lt;br /&gt;19&lt;img src =&quot;http://blog.csdn.net/s_ongfei/aggbug/3992927.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/s_ongfei/234315731/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/s_ongfei/234315731/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 16 Mar 2009 06:20:00 +0800</pubDate><author>宋飞</author><comments>http://blog.csdn.net/s_ongfei/archive/2009/03/15/3992927.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/s_ongfei/archive/2009/03/15/3992927.aspx</guid><dc:creator>宋飞</dc:creator><fs:srclink>http://blog.csdn.net/s_ongfei/archive/2009/03/15/3992927.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/s_ongfei/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/s_ongfei/~1068171/234315731/1068171</fs:itemid></item><item><title>Oracle 快照及 dblink使用 （两台服务器数据同步）</title><link>http://blog.csdn.net/s_ongfei/archive/2009/03/12/3984904.aspx</link><wfw:comment>http://blog.csdn.net/s_ongfei/comments/3984904.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/s_ongfei/comments/commentRss/3984904.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3984904</trackback:ping><description>Oracle 快照及 dblink使用 （两台服务器数据同步）--名词说明：源——被同步的数据库--          目的——要同步到的数据库/*一、创建dblink：*/--1、在目的数据库上，创建dblindrop database link dblink_anson;Create publicdatabase link dblink_ansonConnect to lg identified by lg using 'SDLGDB';--源数据库的用户名、密码、服务器名k/*二、创建快照：*/--1、在源和目的数据库上同时执行一下语句，创建要被同步的表drop table tb_anson;create table tb_anson(c1 varchar2(12));alter table tb_anson add constraint pk_anson primary key (C1);&lt;img src =&quot;http://blog.csdn.net/s_ongfei/aggbug/3984904.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/s_ongfei/234315732/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/s_ongfei/234315732/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 13 Mar 2009 01:57:00 +0800</pubDate><author>宋飞</author><comments>http://blog.csdn.net/s_ongfei/archive/2009/03/12/3984904.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/s_ongfei/archive/2009/03/12/3984904.aspx</guid><dc:creator>宋飞</dc:creator><fs:srclink>http://blog.csdn.net/s_ongfei/archive/2009/03/12/3984904.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/s_ongfei/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/s_ongfei/~1068171/234315732/1068171</fs:itemid></item><item><title>一些有用的javascript小函数</title><link>http://blog.csdn.net/s_ongfei/archive/2009/03/12/3984395.aspx</link><wfw:comment>http://blog.csdn.net/s_ongfei/comments/3984395.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/s_ongfei/comments/commentRss/3984395.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3984395</trackback:ping><description>一些有用的javascript小函数以下是我个人从网上摘录的或自写的javasript函数，就当抛砖引玉吧：&lt;br /&gt;&lt;br /&gt;一、js要经常获取或设置url地址中的参数部分，故我写了如下2个函数：&lt;br /&gt;    //获取URL地址的QuestString&lt;br /&gt;    //参数1：url表示传入的地址，多为window.location.href.search 或 document.URL&lt;br /&gt;   //参数2：questname表示参数名，比如http://www.google.cn?q=js中的字符q&lt;br /&gt;    function GetQuestValue(url,questname)&lt;br /&gt;    {var v='';var q=url.replace(/.*\?/,&quot;&quot;).split(&quot;&amp;&quot;);&lt;br /&gt;    var forsearch=new RegExp(questname+'=',&quot;i&quot;); &lt;br /&gt;    for(var i=0;i&lt;br /&gt;    {&lt;br /&gt;    if(q[i].search(&lt;img src =&quot;http://blog.csdn.net/s_ongfei/aggbug/3984395.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/s_ongfei/234315733/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/s_ongfei/234315733/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 12 Mar 2009 23:47:00 +0800</pubDate><author>宋飞</author><comments>http://blog.csdn.net/s_ongfei/archive/2009/03/12/3984395.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/s_ongfei/archive/2009/03/12/3984395.aspx</guid><dc:creator>宋飞</dc:creator><fs:srclink>http://blog.csdn.net/s_ongfei/archive/2009/03/12/3984395.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/s_ongfei/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/s_ongfei/~1068171/234315733/1068171</fs:itemid></item></channel></rss>