<?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/managergh" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/managergh" type="application/rss+xml"></fs:self_link><lastBuildDate>Thu, 26 Mar 2009 11:36:00 GMT</lastBuildDate><title>昊的专栏</title><description>每天早上醒来,我都看一眼世界上最富有的人的名单,当上面没有我的名字的时候,我便起床上班.........^(Oo)^</description><link>http://blog.csdn.net/managergh/</link><item><title>透析SCN号</title><link>http://blog.csdn.net/managergh/archive/2009/03/26/4026171.aspx</link><wfw:comment>http://blog.csdn.net/managergh/comments/4026171.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/managergh/comments/commentRss/4026171.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4026171</trackback:ping><description>SCN是当Oracle数据库更新后，由DBMS自动维护去累积递增的一个数字。当一笔交易commit时，LGWR会将log buffer写入redo log file，同时也会将该笔交易的SCN同步写入到redo log file内（wait-until-completed）。因此当你commit transaction时，在交易成功的讯息返回之前，LGWR必须先完整的完成上述行为之后，否则你是看不到提交成功的回应讯息。&lt;br /&gt;可以查询目前系统最新的SCN&lt;br /&gt;SQL&gt;select dbms_flashback.get_system_change_number from dual;&lt;br /&gt;&lt;br /&gt;可以理解，这里返回的SCN，也是目前redo log file最新的SCN纪录。因为commit后的交易才会有SCN，而一旦commit就会立刻写入redo log file中。 checkpoint 发生的时候对应了一个 scn ，表示 检查点发生的时间点，也表示对应在这个 时间点之前的dirty buffer 都将被写到数据文件。 当写完的时候也就是这个检查点对应结束，然后&lt;img src =&quot;http://blog.csdn.net/managergh/aggbug/4026171.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 26 Mar 2009 19:36:00 +0800</pubDate><author>gh</author><comments>http://blog.csdn.net/managergh/archive/2009/03/26/4026171.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/managergh/archive/2009/03/26/4026171.aspx</guid><dc:creator>gh</dc:creator></item><item><title>EXPDP和IMPDP使用说明</title><link>http://blog.csdn.net/managergh/archive/2009/02/11/3876606.aspx</link><wfw:comment>http://blog.csdn.net/managergh/comments/3876606.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/managergh/comments/commentRss/3876606.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3876606</trackback:ping><description>EXPDP和IMPDP使用说明&lt;img src =&quot;http://blog.csdn.net/managergh/aggbug/3876606.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 11 Feb 2009 19:38:00 +0800</pubDate><author>gh</author><comments>http://blog.csdn.net/managergh/archive/2009/02/11/3876606.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/managergh/archive/2009/02/11/3876606.aspx</guid><dc:creator>gh</dc:creator></item><item><title>dba_free_space 以及查询剩余表空间百分比和回滚段命中率的SQL</title><link>http://blog.csdn.net/managergh/archive/2008/12/18/3547403.aspx</link><wfw:comment>http://blog.csdn.net/managergh/comments/3547403.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/managergh/comments/commentRss/3547403.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3547403</trackback:ping><description>dba_free_space 显示的是有free 空间的tablespace ，如果一个tablespace 的free 空间不连续，那每段free空间都会在dba_free_space中存在一条记录。如果一个tablespace 有好几条记录，说明表空间存在碎片，当采用字典管理的表空间碎片超过500就需要对表空间进行碎片整理。select tablespace_name,sum(bytes) 总字节数,max(bytes),count(*) from dba_free_space group by tablespace_name;count大于500 要考虑一下了 是否需要整理或者SQL&gt; select a.tablespace_name  ,count(1) 碎片量 from dba_free_space a, dba_tablespaces b  2  where a.tablespace_name=b.tablespace_name  3  and  b&lt;img src =&quot;http://blog.csdn.net/managergh/aggbug/3547403.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Thu, 18 Dec 2008 18:42:00 +0800</pubDate><author>gh</author><comments>http://blog.csdn.net/managergh/archive/2008/12/18/3547403.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/managergh/archive/2008/12/18/3547403.aspx</guid><dc:creator>gh</dc:creator></item><item><title>Oracle10g出现两个监听进程的故障 tnslsnr listener -inherit</title><link>http://blog.csdn.net/managergh/archive/2008/11/28/3399426.aspx</link><wfw:comment>http://blog.csdn.net/managergh/comments/3399426.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/managergh/comments/commentRss/3399426.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3399426</trackback:ping><description>tnslsnr listener1 -inherit 出现两个监听ORACLE 监听进程夯住&lt;img src =&quot;http://blog.csdn.net/managergh/aggbug/3399426.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 28 Nov 2008 16:44:00 +0800</pubDate><author>gh</author><comments>http://blog.csdn.net/managergh/archive/2008/11/28/3399426.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/managergh/archive/2008/11/28/3399426.aspx</guid><dc:creator>gh</dc:creator></item><item><title>关于使用PRO*C编程的一些简单说明和例子</title><link>http://blog.csdn.net/managergh/archive/2008/10/21/3115354.aspx</link><wfw:comment>http://blog.csdn.net/managergh/comments/3115354.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/managergh/comments/commentRss/3115354.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3115354</trackback:ping><description>PROC是ORACLE数据库提供的编程接口之一，其应用十分的广泛，下面通过一个具体的例子，介绍PROC编程的一些经验及应注意的地方。&lt;img src =&quot;http://blog.csdn.net/managergh/aggbug/3115354.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 21 Oct 2008 16:42:00 +0800</pubDate><author>gh</author><comments>http://blog.csdn.net/managergh/archive/2008/10/21/3115354.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/managergh/archive/2008/10/21/3115354.aspx</guid><dc:creator>gh</dc:creator></item><item><title>查找oracle数据库系统里的bad sql语句的方法</title><link>http://blog.csdn.net/managergh/archive/2008/10/09/3042869.aspx</link><wfw:comment>http://blog.csdn.net/managergh/comments/3042869.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/managergh/comments/commentRss/3042869.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3042869</trackback:ping><description>oracle调优,查找oracle数据库系统里的bad sql语句的方法&lt;img src =&quot;http://blog.csdn.net/managergh/aggbug/3042869.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Fri, 10 Oct 2008 00:00:00 +0800</pubDate><author>gh</author><comments>http://blog.csdn.net/managergh/archive/2008/10/09/3042869.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/managergh/archive/2008/10/09/3042869.aspx</guid><dc:creator>gh</dc:creator></item><item><title>Linux下面的类红警游戏</title><link>http://blog.csdn.net/managergh/archive/2008/10/08/3033995.aspx</link><wfw:comment>http://blog.csdn.net/managergh/comments/3033995.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/managergh/comments/commentRss/3033995.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3033995</trackback:ping><description>在windows下面红警系列的游戏玩的人算是不少，从红警95至后来的红警II，尤其
是后者，在当时可谓风骚一时。当然，如果在linux下面也可以用wine来模拟红警是可以的，不过要玩原汁原味的linux游戏，还是我今天要说的这一款游戏了。
&lt;img src =&quot;http://blog.csdn.net/managergh/aggbug/3033995.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Wed, 08 Oct 2008 23:29:00 +0800</pubDate><author>gh</author><comments>http://blog.csdn.net/managergh/archive/2008/10/08/3033995.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/managergh/archive/2008/10/08/3033995.aspx</guid><dc:creator>gh</dc:creator></item><item><title>oracle 表分区 表分区示例</title><link>http://blog.csdn.net/managergh/archive/2008/04/15/2293950.aspx</link><wfw:comment>http://blog.csdn.net/managergh/comments/2293950.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/managergh/comments/commentRss/2293950.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2293950</trackback:ping><description>oracle 表分区 表分区示例&lt;img src =&quot;http://blog.csdn.net/managergh/aggbug/2293950.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 15 Apr 2008 23:04:00 +0800</pubDate><author>gh</author><comments>http://blog.csdn.net/managergh/archive/2008/04/15/2293950.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/managergh/archive/2008/04/15/2293950.aspx</guid><dc:creator>gh</dc:creator></item><item><title>RMAN备份</title><link>http://blog.csdn.net/managergh/archive/2008/04/14/2289689.aspx</link><wfw:comment>http://blog.csdn.net/managergh/comments/2289689.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/managergh/comments/commentRss/2289689.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2289689</trackback:ping><description>RMAN备份&lt;img src =&quot;http://blog.csdn.net/managergh/aggbug/2289689.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Mon, 14 Apr 2008 16:30:00 +0800</pubDate><author>gh</author><comments>http://blog.csdn.net/managergh/archive/2008/04/14/2289689.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/managergh/archive/2008/04/14/2289689.aspx</guid><dc:creator>gh</dc:creator></item><item><title>处理ORACLE数据库中的锁</title><link>http://blog.csdn.net/managergh/archive/2008/04/08/2260423.aspx</link><wfw:comment>http://blog.csdn.net/managergh/comments/2260423.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/managergh/comments/commentRss/2260423.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2260423</trackback:ping><description>处理ORACLE数据库中的锁&lt;img src =&quot;http://blog.csdn.net/managergh/aggbug/2260423.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;</description><pubDate>Tue, 08 Apr 2008 22:00:00 +0800</pubDate><author>gh</author><comments>http://blog.csdn.net/managergh/archive/2008/04/08/2260423.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/managergh/archive/2008/04/08/2260423.aspx</guid><dc:creator>gh</dc:creator></item></channel></rss>