<?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/alexcao247" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/alexcao247" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 10 Apr 2009 11:16:00 GMT</lastBuildDate><title>金针龟的专栏</title><link>http://blog.csdn.net/alexcao247/</link><item><title>Oracle的dual表作用</title><link>http://blog.csdn.net/alexcao247/archive/2009/04/10/4061781.aspx</link><wfw:comment>http://blog.csdn.net/alexcao247/comments/4061781.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexcao247/comments/commentRss/4061781.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4061781</trackback:ping><description>&lt;br /&gt; 1、查看当前用户，可以在 SQL Plus中执行下面语句&lt;br /&gt;　　select user from dual；&lt;br /&gt;2、用来调用系统函数&lt;br /&gt;　　select to_char（sysdate，’yyyy-mm-dd hh24：mi：ss’） from dual；——获得当前系统时间&lt;br /&gt;　　select SYS_CONTEXT（’USERENV’，’TERMINAL’） from dual；——获得主机名&lt;br /&gt;　　select SYS_CONTEXT（’USERENV’，’language’） from dual；——获得当前locale&lt;br /&gt;　　select dbms_random.random from dual；——获得一个随机数&lt;br /&gt;3、得到序列的下一个值或当前值，用下面语句&lt;br /&gt;　　select your_sequence.nextval from dual；——获得序列your_sequence的下一个值&lt;br /&gt;　　select your_sequence.currval from dual；——获得序列yo&lt;img src =&quot;http://blog.csdn.net/alexcao247/aggbug/4061781.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 10 Apr 2009 19:16:00 +0800</pubDate><author>飞鸟</author><comments>http://blog.csdn.net/alexcao247/archive/2009/04/10/4061781.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexcao247/archive/2009/04/10/4061781.aspx</guid><dc:creator>飞鸟</dc:creator></item><item><title>ORACLE函数大全</title><link>http://blog.csdn.net/alexcao247/archive/2009/04/10/4061732.aspx</link><wfw:comment>http://blog.csdn.net/alexcao247/comments/4061732.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexcao247/comments/commentRss/4061732.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4061732</trackback:ping><description>&lt;br /&gt;&lt;br /&gt;SQL中的单记录函数&lt;br /&gt;1.ASCII&lt;br /&gt;返回与指定的字符对应的十进制数;&lt;br /&gt;SQL&gt; select ascii('A') A,ascii('a') a,ascii('0') zero,ascii(' ') space from dual;&lt;br /&gt;        A         A      ZERO     SPACE&lt;br /&gt;--------- --------- --------- ---------&lt;br /&gt;       65        97        48        32&lt;br /&gt;&lt;br /&gt;2.CHR&lt;br /&gt;给出整数,返回对应的字符;&lt;br /&gt;SQL&gt; select chr(54740) zhao,chr(65) chr65 from dual;&lt;br /&gt;ZH C&lt;br /&gt;-- -&lt;br /&gt;赵 A&lt;br /&gt;3.CONCAT&lt;br /&gt;连接两个字符串;&lt;br /&gt;SQL&gt; select concat('010-','88888888')||'转23'  高乾竞电话 from dual&lt;img src =&quot;http://blog.csdn.net/alexcao247/aggbug/4061732.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 10 Apr 2009 19:05:00 +0800</pubDate><author>飞鸟</author><comments>http://blog.csdn.net/alexcao247/archive/2009/04/10/4061732.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexcao247/archive/2009/04/10/4061732.aspx</guid><dc:creator>飞鸟</dc:creator></item><item><title>ORACLE的基本语法集锦</title><link>http://blog.csdn.net/alexcao247/archive/2009/04/08/4057585.aspx</link><wfw:comment>http://blog.csdn.net/alexcao247/comments/4057585.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexcao247/comments/commentRss/4057585.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4057585</trackback:ping><description>&lt;br /&gt;-- 表&lt;br /&gt;create table test (names varchar2(12),&lt;br /&gt;                   dates date,&lt;br /&gt;                   num   int,&lt;br /&gt;                   dou   double);&lt;br /&gt;-- 视图&lt;br /&gt;create or replace view vi_test as&lt;br /&gt;select * from test;&lt;br /&gt;-- 同义词&lt;br /&gt;create or replace synonym aa&lt;br /&gt;for dbusrcard001.aa;&lt;br /&gt;-- 存储过程&lt;br /&gt;create or replace produce dd(v_id in employee.empoy_id%type)&lt;br /&gt;as&lt;br /&gt;begin&lt;br /&gt;&lt;br /&gt;end&lt;br /&gt;dd;&lt;br /&gt;-- 函数&lt;br /&gt;create or replace function ee(v_id in employee%&lt;img src =&quot;http://blog.csdn.net/alexcao247/aggbug/4057585.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 09 Apr 2009 00:56:00 +0800</pubDate><author>飞鸟</author><comments>http://blog.csdn.net/alexcao247/archive/2009/04/08/4057585.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexcao247/archive/2009/04/08/4057585.aspx</guid><dc:creator>飞鸟</dc:creator></item><item><title>女孩名字</title><link>http://blog.csdn.net/alexcao247/archive/2008/12/19/3557021.aspx</link><wfw:comment>http://blog.csdn.net/alexcao247/comments/3557021.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexcao247/comments/commentRss/3557021.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3557021</trackback:ping><description>&lt;br /&gt;以寒、寒香、小凡、代亦、梦露、映波、友蕊、寄凡、怜蕾、雁枫、水绿、曼荷、笑珊、寒珊、谷南、慕儿、夏岚、友儿、小萱、紫青、妙菱、冬寒、曼柔、语蝶、青筠、夜安、觅海、问安、晓槐、雅山、访云、翠容、寒凡、晓绿、以菱、冬云、含玉、访枫、含卉、夜白、冷安、灵竹、醉薇、元珊、幻波、盼夏、元瑶、迎曼、水云、访琴、谷波、乐之、笑白、之山、妙海、紫霜、平夏、凌旋、孤丝、怜寒、向萍、凡松、青丝、翠安、如天、凌雪、绮菱、代云、南莲、寻南、春文、香薇、冬灵、凌珍、采绿、天春、沛文、紫槐、幻柏、采文、春梅、雪旋、盼海、映梦、安雁、映容、凝阳、访风、天亦、平绿、盼香、觅风、小霜、雪萍、半雪、山柳、谷雪、靖易、白薇、梦菡、飞绿、如波、又晴、友易、香菱、冬亦、问雁、妙春、海冬、半安、平春、幼柏、秋灵、凝芙、念烟、白山、从灵、尔芙、迎蓉、念寒、翠绿、翠芙、靖儿、妙柏、千凝、小珍、天巧。妙旋、雪枫、夏菡、元绿、痴灵、绮琴、雨双、听枫、觅荷、凡之、晓凡、雅彤、香薇、孤风、从安、绮彤、之玉、雨珍、幻丝、代梅、香波、青亦、元菱、海瑶、飞槐、听露、梦岚、幻竹、新冬、盼翠、谷云、忆霜、水瑶、慕晴、秋双、雨真、觅珍&lt;img src =&quot;http://blog.csdn.net/alexcao247/aggbug/3557021.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 19 Dec 2008 19:47:00 +0800</pubDate><author>飞鸟</author><comments>http://blog.csdn.net/alexcao247/archive/2008/12/19/3557021.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexcao247/archive/2008/12/19/3557021.aspx</guid><dc:creator>飞鸟</dc:creator></item><item><title>应用程序实现XP风格简便方法</title><link>http://blog.csdn.net/alexcao247/archive/2008/11/27/3389321.aspx</link><wfw:comment>http://blog.csdn.net/alexcao247/comments/3389321.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexcao247/comments/commentRss/3389321.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3389321</trackback:ping><description>&lt;br /&gt;WindowsXP在界面上较以往操作系统有了很大的改动，看多了似乎也还算漂亮，但不知大家有没有注意到用VC直接写出来的程序即使在XP下仍然是XP之前的风格，看来其中有什么地方还是需要作一些改动的。相信大家都在网上见过在资源里加入XML代码的方法，这里我就不再重复这种方法了，否则有抄袭嫌疑。这里介绍一种很方便的方法，希望对大家有帮助。这个方法其实也是和XML有关，只不过不是放在资源里了，现在请按照以下步骤来做。&lt;br /&gt;&lt;br /&gt;1．首先确认你在Windows XP下，因为如果在98或2K下，那除非自己重画画所有界面，要不基本上是无法实现XP风格的。 &lt;br /&gt;&lt;br /&gt;2． 新建一个文本文件，把下面这段XML代码粘贴进去 &lt;img src =&quot;http://blog.csdn.net/alexcao247/aggbug/3389321.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 27 Nov 2008 18:19:00 +0800</pubDate><author>飞鸟</author><comments>http://blog.csdn.net/alexcao247/archive/2008/11/27/3389321.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexcao247/archive/2008/11/27/3389321.aspx</guid><dc:creator>飞鸟</dc:creator></item><item><title>VC编程技巧20法</title><link>http://blog.csdn.net/alexcao247/archive/2008/11/21/3345389.aspx</link><wfw:comment>http://blog.csdn.net/alexcao247/comments/3345389.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexcao247/comments/commentRss/3345389.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3345389</trackback:ping><description>&lt;br /&gt;编程技巧20法(修订)&lt;br /&gt;作者：徐景周&lt;br /&gt;1. 如何激活当前屏幕保护程序&lt;br /&gt;// 激活当前屏幕保护程序, jingzhou xu&lt;br /&gt;PostMessage(WM_SYSCOMMAND,SC_SCREENSAVE,0);&lt;br /&gt;2. 如何禁止/启用屏幕保护及电源管理&lt;br /&gt;static UINT dss_GetList[] = {SPI_GETLOWPOWERTIMEOUT, SPI_GETPOWEROFFTIMEOUT, SPI_GETSCREENSAVETIMEOUT};&lt;br /&gt;static UINT dss_SetList[] = {SPI_SETLOWPOWERTIMEOUT, SPI_SETPOWEROFFTIMEOUT, SPI_SETSCREENSAVETIMEOUT};&lt;br /&gt;static const int dss_ListCount = _countof(dss_GetList);&lt;br /&gt;l 禁止屏幕保护及电源管理&lt;br /&gt;{&lt;br /&gt;m_pValue = new int[dss_ListCount]&lt;img src =&quot;http://blog.csdn.net/alexcao247/aggbug/3345389.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 21 Nov 2008 21:42:00 +0800</pubDate><author>飞鸟</author><comments>http://blog.csdn.net/alexcao247/archive/2008/11/21/3345389.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexcao247/archive/2008/11/21/3345389.aspx</guid><dc:creator>飞鸟</dc:creator></item><item><title>SVN在Windows下的安装手记</title><link>http://blog.csdn.net/alexcao247/archive/2008/11/12/3281683.aspx</link><wfw:comment>http://blog.csdn.net/alexcao247/comments/3281683.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexcao247/comments/commentRss/3281683.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3281683</trackback:ping><description> 第一步：下载文件和安装&lt;br /&gt;SVN服务器端下载地址：http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91&lt;br /&gt;选择里面最新的win32安装包，我选择的是svn-1.4.2-setup.exe，因为最新的1.4.3只有二进制包，没有安装包。&lt;br /&gt;SVN客户端软件下载地址：http://tortoisesvn.net/downloads，我选择的是最新的1.4.3.8645。&lt;br /&gt;安装过程其实很简单，哪个先装都可以，设置好安装路径后一路Next到底。&lt;br /&gt;我的安装路径为是 服务端：D:\Program Files\Subversion 客户端：D:\Program Files\TortoiseSVN&lt;br /&gt;服务端安装好后软件会自动在系统的环境变量中增加相应的值，测试是安装完成可以在cmd命令行中输入“svn”或者“svnadmin”来测试能否运行。&lt;br /&gt;客户端安装好后会提示你重新启动计算机，照做就行。&lt;br /&gt;&lt;br /&gt;第二步：部署存储库并运行服务端&lt;img src =&quot;http://blog.csdn.net/alexcao247/aggbug/3281683.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 12 Nov 2008 22:45:00 +0800</pubDate><author>飞鸟</author><comments>http://blog.csdn.net/alexcao247/archive/2008/11/12/3281683.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexcao247/archive/2008/11/12/3281683.aspx</guid><dc:creator>飞鸟</dc:creator></item><item><title>软件工程心理学之9----乙方如何面对甲方2</title><link>http://blog.csdn.net/alexcao247/archive/2008/09/20/2954570.aspx</link><wfw:comment>http://blog.csdn.net/alexcao247/comments/2954570.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexcao247/comments/commentRss/2954570.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2954570</trackback:ping><description>   大概谈了下如何应对甲方的领导。这次要谈的就是很重要的如何应对甲方的信息项目的负责人了。这其实也是相当重要的一部分，在打通了和甲方领导这&lt;br /&gt;个关卡后，如何处理好跟甲方信息项目负责人的关系，直接影响到接下来项目的顺利高效进行。平时乙方跟甲方打交道最多的，其实也就是跟甲方信息项目负责人打交道。为方便论述，下文将甲方信息项目负责人简称甲方负责人。&lt;br /&gt;&lt;br /&gt;     首先，必须简单归纳下一般来讲，甲方负责人的一般身份和组成。一般来说，常见的甲方负责人有如下几类型，简单分&lt;br /&gt;分类吧&lt;br /&gt;&lt;br /&gt;    1) 学术型。这类型的有比如博士，硕士以上的，学院派出来的，理论相当丰富，但实际项目不是很丰富。&lt;br /&gt;    2）技能强型的。这类型的，在企业中，一般带一些比较多人员的团队去完成任务，一般这些公司都是&lt;br /&gt;比较大的企业了，有人数不少的开发团队，但有的东西还是要外包出去。技能型的甲方负责人，是动手&lt;br /&gt;型&lt;img src =&quot;http://blog.csdn.net/alexcao247/aggbug/2954570.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 20 Sep 2008 17:48:00 +0800</pubDate><author>飞鸟</author><comments>http://blog.csdn.net/alexcao247/archive/2008/09/20/2954570.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexcao247/archive/2008/09/20/2954570.aspx</guid><dc:creator>飞鸟</dc:creator></item><item><title>软件工程心理学之---乙方如何面对甲方之1</title><link>http://blog.csdn.net/alexcao247/archive/2008/09/20/2954569.aspx</link><wfw:comment>http://blog.csdn.net/alexcao247/comments/2954569.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexcao247/comments/commentRss/2954569.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2954569</trackback:ping><description>   在之前的软件工程心理学系列的文章中，谈到了关于在整个软件项目工程范围内，甲方领导，甲方以及乙方的之间的一些关系，以及作为甲方负责人，如何能揣摩好领导以及乙方的心理，更好地有利于工程项目的进行。在接下来的文章里，将开始谈谈作为乙方，如何揣摩好用户（这里是说甲方了）的心理，如何在项目过程中搞好和用户的关系，如何在项目过程中最大限度优化自己的资源，保护好自己的利益，又能跟用户愉快合作，不得失用户，还会谈下作为乙方的负责人，如何把握好团队的心理，更好地建设团队。&lt;br /&gt;&lt;br /&gt;      首先，我们总的概括来看下乙方在项目中处于的地位和遇到的问题和特点，还是继续看这个图：&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp&lt;img src =&quot;http://blog.csdn.net/alexcao247/aggbug/2954569.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Sat, 20 Sep 2008 17:47:00 +0800</pubDate><author>飞鸟</author><comments>http://blog.csdn.net/alexcao247/archive/2008/09/20/2954569.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexcao247/archive/2008/09/20/2954569.aspx</guid><dc:creator>飞鸟</dc:creator></item><item><title>VSTS 再小再敏捷的项目也一定要实行的制度：BUG和变更的三方会审</title><link>http://blog.csdn.net/alexcao247/archive/2008/08/05/2773183.aspx</link><wfw:comment>http://blog.csdn.net/alexcao247/comments/2773183.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/alexcao247/comments/commentRss/2773183.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2773183</trackback:ping><description>&lt;img src =&quot;http://blog.csdn.net/alexcao247/aggbug/2773183.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 06 Aug 2008 04:42:00 +0800</pubDate><author>飞鸟</author><comments>http://blog.csdn.net/alexcao247/archive/2008/08/05/2773183.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/alexcao247/archive/2008/08/05/2773183.aspx</guid><dc:creator>飞鸟</dc:creator></item></channel></rss>